2.0.1: bump MARKETING_VERSION 2.0 -> 2.0.1 (fix onboarding)
La 2.0 salio a la App Store el 2026-07-28 con los dos ultimos pasos del onboarding sin mostrarse. 2.0.1 lleva ese fix. El Info.plist del widget lleva la version hardcodeada y fastlane no la toca, asi que se alinea a mano (2.0.1 / 65) antes de construir. Documentado en CLAUDE.md para no volver a tropezar. Co-Authored-By: Claude <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_012Ks8uUcMA9mjypVK7F2Pkt
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
- **Name**: MealMood: Family Meal Planner
|
- **Name**: MealMood: Family Meal Planner
|
||||||
- **Bundle ID**: com.alexandrevazquez.mealmood
|
- **Bundle ID**: com.alexandrevazquez.mealmood
|
||||||
- **Platform**: iOS/iPadOS (also runs as iOS app on Mac)
|
- **Platform**: iOS/iPadOS (also runs as iOS app on Mac)
|
||||||
- **Current version**: 2.0 (dev, beta-bound; 1.2.0 shipped to the App Store)
|
- **Current version**: 2.0.1 (dev, beta-bound; 2.0 shipped to the App Store 2026-07-28)
|
||||||
- **Main branch**: `1.0.1` (production), feature branches named after versions
|
- **Main branch**: `1.0.1` (production), feature branches named after versions
|
||||||
|
|
||||||
### Branch ↔ version convention (IMPORTANT)
|
### Branch ↔ version convention (IMPORTANT)
|
||||||
@@ -13,7 +13,13 @@ The active dev branch is named after the **current** `MARKETING_VERSION`, not th
|
|||||||
# after bumping MARKETING_VERSION in the Xcode project to e.g. 1.1.6
|
# after bumping MARKETING_VERSION in the Xcode project to e.g. 1.1.6
|
||||||
git branch -m <old-version> 1.1.6 # e.g. git branch -m 1.1.5 1.1.6
|
git branch -m <old-version> 1.1.6 # e.g. git branch -m 1.1.5 1.1.6
|
||||||
```
|
```
|
||||||
Right now: `MARKETING_VERSION = 2.0` → active branch is `2.0`. Keep them in sync. (The build number bump within the same version does NOT rename the branch — only a version change does.)
|
Right now: `MARKETING_VERSION = 2.0.1` → active branch is `2.0.1`. Keep them in sync. (The build number bump within the same version does NOT rename the branch — only a version change does.)
|
||||||
|
|
||||||
|
**The widget version is not automated.** `MealMoodWidget/Info.plist` hardcodes `CFBundleShortVersionString` and `CFBundleVersion`; `fastlane`'s `increment_build_number` only touches the app target. Update the widget by hand to match the app **before** running `fastlane beta`, or App Store Connect rejects the upload for a version mismatch:
|
||||||
|
```bash
|
||||||
|
plutil -replace CFBundleShortVersionString -string "<version>" MealMoodWidget/Info.plist
|
||||||
|
plutil -replace CFBundleVersion -string "<build>" MealMoodWidget/Info.plist
|
||||||
|
```
|
||||||
|
|
||||||
## Credentials — all managed via `pass` (GPG-encrypted, syncs to Gitea)
|
## Credentials — all managed via `pass` (GPG-encrypted, syncs to Gitea)
|
||||||
|
|
||||||
|
|||||||
@@ -1026,7 +1026,7 @@
|
|||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"@executable_path/Frameworks",
|
"@executable_path/Frameworks",
|
||||||
);
|
);
|
||||||
MARKETING_VERSION = 2.0;
|
MARKETING_VERSION = 2.0.1;
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = com.alexandrevazquez.mealmood;
|
PRODUCT_BUNDLE_IDENTIFIER = com.alexandrevazquez.mealmood;
|
||||||
PRODUCT_NAME = MealMood;
|
PRODUCT_NAME = MealMood;
|
||||||
PROVISIONING_PROFILE_SPECIFIER = "com.alexandrevazquez.mealmood AppStore";
|
PROVISIONING_PROFILE_SPECIFIER = "com.alexandrevazquez.mealmood AppStore";
|
||||||
@@ -1149,7 +1149,7 @@
|
|||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"@executable_path/Frameworks",
|
"@executable_path/Frameworks",
|
||||||
);
|
);
|
||||||
MARKETING_VERSION = 2.0;
|
MARKETING_VERSION = 2.0.1;
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = com.alexandrevazquez.mealmood;
|
PRODUCT_BUNDLE_IDENTIFIER = com.alexandrevazquez.mealmood;
|
||||||
PRODUCT_NAME = MealMood;
|
PRODUCT_NAME = MealMood;
|
||||||
SDKROOT = iphoneos;
|
SDKROOT = iphoneos;
|
||||||
|
|||||||
@@ -15,9 +15,9 @@
|
|||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>XPC!</string>
|
<string>XPC!</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>2.0</string>
|
<string>2.0.1</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>64</string>
|
<string>65</string>
|
||||||
<key>NSExtension</key>
|
<key>NSExtension</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>NSExtensionPointIdentifier</key>
|
<key>NSExtensionPointIdentifier</key>
|
||||||
|
|||||||
Reference in New Issue
Block a user