Bump version for App Store update#26
Merged
Merged
Conversation
Sets MARKETING_VERSION to 1.0.5 and CURRENT_PROJECT_VERSION to 3 for the next App Store submission. Signing settings, entitlements, build phases, and source files are unchanged.
|
This pull request has been ignored for the connected project Preview Branches by Supabase. |
There was a problem hiding this comment.
Pull request overview
Updates the Xcode project’s versioning settings to prepare the AkFit app for the next App Store submission by bumping the user-facing version and internal build number.
Changes:
- Set
MARKETING_VERSIONto1.0.5for Debug/Release configurations. - Set
CURRENT_PROJECT_VERSION(build number) to3across app and test targets.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Sets MARKETING_VERSION to 1.0.5 and CURRENT_PROJECT_VERSION to 3 for the next App Store submission. Signing settings, entitlements, build phases, and source files are unchanged.
Greptile Summary
This PR bumps the build number and aligns version strings across all targets in preparation for an App Store submission. All six build configurations (Debug and Release for the main app, AkFitTests, and AkFitUITests) now share consistent version metadata.
CURRENT_PROJECT_VERSIONis incremented from 2 to 3 in every build configuration; this is the build number App Store Connect uses to distinguish uploads.MARKETING_VERSIONis updated from1.0to1.0.5in the four test-target configurations; the main app target already carried1.0.5from a prior commit, so no change was needed there.Confidence Score: 5/5
Safe to merge — only version metadata is touched and all six build configurations are consistent.
The change is limited to version number fields in the Xcode project file. Every build configuration (Debug and Release across the main app, AkFitTests, and AkFitUITests) ends up with CURRENT_PROJECT_VERSION = 3 and MARKETING_VERSION = 1.0.5. No source files, entitlements, signing settings, or build phases were modified.
No files require special attention.
Important Files Changed
Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A[project.pbxproj] --> B[Main App Target\nai.talktoem.AkFit] A --> C[AkFitTests Target\nai.talktoem.AkFitTests] A --> D[AkFitUITests Target\nai.talktoem.AkFitUITests] B --> B1[Debug Config] B --> B2[Release Config] C --> C1[Debug Config] C --> C2[Release Config] D --> D1[Debug Config] D --> D2[Release Config] B1 & B2 --> BV["CURRENT_PROJECT_VERSION: 2 → 3\nMARKETING_VERSION: already 1.0.5"] C1 & C2 --> CV["CURRENT_PROJECT_VERSION: 2 → 3\nMARKETING_VERSION: 1.0 → 1.0.5"] D1 & D2 --> DV["CURRENT_PROJECT_VERSION: 2 → 3\nMARKETING_VERSION: 1.0 → 1.0.5"]Reviews (1): Last reviewed commit: "Bump version for App Store update" | Re-trigger Greptile