chore(release): 0.2.0#102
Merged
Merged
Conversation
Change-Id: I5cab6a176a279bc2b60f4a704c88581487d0128c Signed-off-by: Thomas Kosiewski <tk@coder.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.
Summary
First stable release of
agent-tty. Bumpspackage.jsonfrom0.1.1-beta.4to0.2.0and finalizes theUnreleasedchangelog block as[v0.2.0] - 2026-05-13.This is Step 3 of the v0.2.0 release sequence:
docs: prepare 0.2.0 release narrativefix(release): support aube-only checkouts without package-lock.jsonchore(release): 0.2.0release:finalizewill push thev0.2.0tag after mergeWhy
0.2.0(and not0.1.0)?No
v0.1.0tag, GitHub release, or npm version ever existed. The package shipped0.1.1-beta.0–0.1.1-beta.4directly. Cutting0.2.0as the first stable sidesteps the "did 0.1.0 ever exist?" mismatch and avoids version-going-backwards optics. Narrative: "0.1.x was the beta line; 0.2.0 is the first stable." Documented in #99.Diff
Exactly two lines change in this commit:
package.json—"version": "0.1.1-beta.4"→"version": "0.2.0"CHANGELOG.md—## [Unreleased]→## [v0.2.0] - 2026-05-13Generated locally with:
npm run release:prep -- --version 0.2.0 --changelog ci # (amend) rename [Unreleased] -> [v0.2.0] - 2026-05-13 git commit --amend --no-editThe
[Unreleased]header rename is included in the prep commit so theRelease Changelogworkflow's existing-version check (release-changelog.yml:97) detects## [v0.2.0]and skips its Communique pass entirely — preserving the curated content already in the Unreleased block.Why not
package-lock.jsontoo?Post-#91 the repo uses
aube-lock.yaml;package-lock.jsonno longer exists. #101 updated the release tooling to handle this case, sorelease:prepcorrectly stages onlypackage.json.After merge
npm run release:finalizefrom clean, syncedmainwill create the annotatedv0.2.0tag and push it. The tag-triggeredReleaseworkflow then:v0.2.0==package.json.version.mise run ci.v0.2.0.0.2.0has no prerelease suffix, the workflow's dist-tag derivation publishes tolatest, replacing the stalelatest: 0.1.1-beta.2mapping.Test plan
npm run format:checkcleannpm run lint0 warnings / 0 errors (showsagent-tty@0.2.0— version bump real)Release Changelogworkflow detects existing[v0.2.0]header and skips (i.e. no bot commit appears on this branch)release:finalizesucceeds andReleaseworkflow publishesdocs/RELEASE-PROCESS.md:npm view agent-tty dist-tags→latest: 0.2.0agent-tty version --json→cliVersion: 0.2.0,protocolVersion: 0.1.0agent-tty --home <tmp> doctor --json→.result.ok: true🤖 Generated with Claude Code