Skip to content

Commit ae2a4a4

Browse files
author
Neo
committed
fix(release): build number now genuinely 200 (app was stuck at 199)
The prior 197->200 bump only touched the WidgetsExtension target's CURRENT_PROJECT_VERSION; the app target sat at 189 and both Info.plists hardcoded CFBundleVersion=199 as literals, so the produced app was build 199, not 200. - Config/Info.plist + WidgetsExtension/Info.plist: CFBundleVersion and CFBundleShortVersionString now read $(CURRENT_PROJECT_VERSION) / $(MARKETING_VERSION) instead of literals, so the build setting is the single source of truth and future bumps propagate. - App target CURRENT_PROJECT_VERSION 189 -> 200 (Debug + Release), matching the widget target so app + extension ship in lockstep. - Ignore build_device/ (local device-build output).
1 parent 598f85b commit ae2a4a4

4 files changed

Lines changed: 7 additions & 6 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
*.xcworkspace/
33
*.xcodeproj/xcuserdata/
44
DerivedData/
5+
build_device/
56
*.ipa
67
*.dSYM.zip
78
*.dSYM

Config/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434
<key>CFBundlePackageType</key>
3535
<string>APPL</string>
3636
<key>CFBundleShortVersionString</key>
37-
<string>1.0.0</string>
37+
<string>$(MARKETING_VERSION)</string>
3838
<key>CFBundleVersion</key>
39-
<string>199</string>
39+
<string>$(CURRENT_PROJECT_VERSION)</string>
4040
<key>ITSAppUsesNonExemptEncryption</key>
4141
<false/>
4242
<key>LSRequiresIPhoneOS</key>

MTRX.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2410,7 +2410,7 @@
24102410
ASSTSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
24112411
CODE_SIGN_IDENTITY = "Apple Development";
24122412
CODE_SIGN_STYLE = Automatic;
2413-
CURRENT_PROJECT_VERSION = 189;
2413+
CURRENT_PROJECT_VERSION = 200;
24142414
DEVELOPMENT_TEAM = Z8T732UGMV;
24152415
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
24162416
CODE_SIGN_ENTITLEMENTS = Config/Entitlements.entitlements;
@@ -2442,7 +2442,7 @@
24422442
ASSTSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
24432443
CODE_SIGN_IDENTITY = "Apple Development";
24442444
CODE_SIGN_STYLE = Automatic;
2445-
CURRENT_PROJECT_VERSION = 189;
2445+
CURRENT_PROJECT_VERSION = 200;
24462446
DEVELOPMENT_TEAM = Z8T732UGMV;
24472447
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
24482448
CODE_SIGN_ENTITLEMENTS = Config/Entitlements.entitlements;

WidgetsExtension/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
<key>CFBundlePackageType</key>
1818
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.0.0</string>
20+
<string>$(MARKETING_VERSION)</string>
2121
<key>CFBundleVersion</key>
22-
<string>199</string>
22+
<string>$(CURRENT_PROJECT_VERSION)</string>
2323
<key>NSExtension</key>
2424
<dict>
2525
<key>NSExtensionPointIdentifier</key>

0 commit comments

Comments
 (0)