fix: sync --version output and wire release-please marker#50
Merged
Conversation
VERSION was hardcoded at 1.0.0 while the released version is 1.1.0, so `altertable --version` reported the wrong number. release-please listed cli/src/version.ts as a generic extra-file but never updated it because the line lacked an x-release-please-version marker. Bump to 1.1.0 and add the marker so future releases stay in sync. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
francoischalifour
approved these changes
Jul 13, 2026
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
altertable --versionprints theVERSIONconstant fromcli/src/version.ts, which was hardcoded at1.0.0. The actual released version is1.1.0(.release-please-manifest.json,cli/package.json), so--versionreported the wrong number.release-please-config.jsonlistscli/src/version.tsas agenericextra-file to bump, but the generic updater only rewrites lines carrying anx-release-please-versionmarker — and the line had none, so release-please never touched it.Fix
VERSIONto1.1.0to match the current release.// x-release-please-versionmarker so release-please keeps it in sync on future releases.🤖 Generated with Claude Code