chore(sender): sync committed pbxproj MARKETING_VERSION with project.yml#112
Merged
Merged
Conversation
The committed project.pbxproj carried MARKETING_VERSION 3.0 while project.yml specifies 3.0.1, so every `xcodegen generate` (run by scripts/build_targetbridge_sender_app.sh) rewrote the file and left the working tree dirty after each build. Regenerate with xcodegen 2.45.4 so the committed pbxproj matches project.yml. The only change is the two MARKETING_VERSION entries; subsequent regenerations are now no-ops. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
Problem
The committed
TargetBridge.xcodeproj/project.pbxprojcarriesMARKETING_VERSION = 3.0, whileproject.ymlspecifies3.0.1. Becausescripts/build_targetbridge_sender_app.shrunsxcodegen generateon every build, the pbxproj is rewritten to3.0.1each time, leaving the working tree dirty after a routine build.Fix
Regenerate the project with
xcodegen(2.45.4) so the committed pbxproj matchesproject.yml. The only change is the twoMARKETING_VERSIONentries (Debug + Release configs); subsequentxcodegen generateruns are now no-ops, so builds no longer dirty the tree.No code or behavior change.
🤖 Generated with Claude Code