|
| 1 | +// Jest Snapshot v1, https://goo.gl/fbAQLP |
| 2 | + |
| 3 | +exports[`direct set semver string 1`] = ` |
| 4 | +"// !$*UTF8*$! |
| 5 | +{ |
| 6 | + objects = { |
| 7 | +/* Begin XCBuildConfiguration section */ |
| 8 | + 13B07F941A680F5B01A75B9A /* Debug */ = { |
| 9 | + isa = XCBuildConfiguration; |
| 10 | + buildSettings = { |
| 11 | + MARKETING_VERSION = 1.1.2; |
| 12 | + CURRENT_PROJECT_VERSION = 32; |
| 13 | + }; |
| 14 | + name = Debug; |
| 15 | + }; |
| 16 | + 13B07F951A680F5B01A75B9A /* Release */ = { |
| 17 | + isa = XCBuildConfiguration; |
| 18 | + buildSettings = { |
| 19 | + MARKETING_VERSION = 1.1.2; |
| 20 | + CURRENT_PROJECT_VERSION = 32; |
| 21 | + }; |
| 22 | + name = Release; |
| 23 | + }; |
| 24 | +/* End XCBuildConfiguration section */ |
| 25 | + }; |
| 26 | +} |
| 27 | +" |
| 28 | +`; |
| 29 | + |
| 30 | +exports[`direct set semver string 2`] = ` |
| 31 | +Object { |
| 32 | + "version": "1.1.2", |
| 33 | +} |
| 34 | +`; |
| 35 | + |
| 36 | +exports[`skip semVer when asked 1`] = ` |
| 37 | +"// !$*UTF8*$! |
| 38 | +{ |
| 39 | + objects = { |
| 40 | +/* Begin XCBuildConfiguration section */ |
| 41 | + 13B07F941A680F5B01A75B9A /* Debug */ = { |
| 42 | + isa = XCBuildConfiguration; |
| 43 | + buildSettings = { |
| 44 | + MARKETING_VERSION = 1.0.0; |
| 45 | + CURRENT_PROJECT_VERSION = 32; |
| 46 | + }; |
| 47 | + name = Debug; |
| 48 | + }; |
| 49 | + 13B07F951A680F5B01A75B9A /* Release */ = { |
| 50 | + isa = XCBuildConfiguration; |
| 51 | + buildSettings = { |
| 52 | + MARKETING_VERSION = 1.0.0; |
| 53 | + CURRENT_PROJECT_VERSION = 32; |
| 54 | + }; |
| 55 | + name = Release; |
| 56 | + }; |
| 57 | +/* End XCBuildConfiguration section */ |
| 58 | + }; |
| 59 | +} |
| 60 | +" |
| 61 | +`; |
| 62 | + |
| 63 | +exports[`successfully bump version 1`] = ` |
| 64 | +"// !$*UTF8*$! |
| 65 | +{ |
| 66 | + objects = { |
| 67 | +/* Begin XCBuildConfiguration section */ |
| 68 | + 13B07F941A680F5B01A75B9A /* Debug */ = { |
| 69 | + isa = XCBuildConfiguration; |
| 70 | + buildSettings = { |
| 71 | + MARKETING_VERSION = 1.1.0; |
| 72 | + CURRENT_PROJECT_VERSION = 32; |
| 73 | + }; |
| 74 | + name = Debug; |
| 75 | + }; |
| 76 | + 13B07F951A680F5B01A75B9A /* Release */ = { |
| 77 | + isa = XCBuildConfiguration; |
| 78 | + buildSettings = { |
| 79 | + MARKETING_VERSION = 1.1.0; |
| 80 | + CURRENT_PROJECT_VERSION = 32; |
| 81 | + }; |
| 82 | + name = Release; |
| 83 | + }; |
| 84 | +/* End XCBuildConfiguration section */ |
| 85 | + }; |
| 86 | +} |
| 87 | +" |
| 88 | +`; |
0 commit comments