chore(release): bump podspecs to 2.0.0#49
Merged
Merged
Conversation
Bump both ConvertSwiftSDKCore.podspec and ConvertSwiftSDK.podspec s.version to 2.0.0 ahead of the v2.0.0 tag (the release workflow asserts podspec == tag). Major bump per RELEASE.md "Version Numbering" — 844c347 carries `feat!: anchored bucketing layout for traffic ramping (contract v12)` with `BREAKING CHANGE: bumps the cross-SDK bucketing contract to v12`. Matches the Android SDK, which released v2.0.0 from the equivalent change. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
|
Caution The consumer version of Gemini Code Assist on GitHub has been sunset. All code review activity has officially ceased. |
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.
Step 1 of the two-step release in
RELEASE.md: bumps.versionin both podspecs onmain, then push thev2.0.0tag at the merge commit.What this changes
ConvertSwiftSDKCore.podspec1.0.12.0.0ConvertSwiftSDK.podspec1.0.12.0.0Both must carry the same value —
ConvertSwiftSDKdeclaress.dependency 'ConvertSwiftSDKCore', s.version.to_s. The release workflow's "Assert podspec versions match tag" step fails the release if either drifts from the tag, so this PR has to land before the tag is pushed.Why 2.0.0 (major)
RELEASE.md→ Version Numbering:fix:→ patch,feat:→ minor, breaking → major. The version is chosen by the maintainer and encoded in the tag; nothing computes it.Commit
844c347in the 43 commits sincev1.0.1is the only breaking one:This matches the Android SDK, which released v2.0.0 from the equivalent
feat(bucketing)!: add anchored bucketing layout for ramping allocations.Verification (local, on this branch)
swift build— Build completeswift test— 387 tests in 81 suites passedswiftlint lint --strict— 0 violations, 0 serious in 182 filesNext step after merge — not automatic
The iOS SDK has no release-on-merge:
release.ymltriggers exclusively onon: push: tags: 'v[0-9]+.[0-9]+.[0-9]+', with nobranches:key and noworkflow_dispatch. Merging this PR publishes nothing. A maintainer then runs:That tag push is what fires the Release workflow → SPM (the tag itself) + GitHub Release + both pods to CocoaPods Trunk.