chore(release): bump dev version to 0.1.57 after 0.1.56 release#117
chore(release): bump dev version to 0.1.57 after 0.1.56 release#117andrei-hasna wants to merge 1 commit into
Conversation
The 0.1.56 release is already fully materialized: tag rust-v0.1.56 points at HEAD, npm @hasna/codewith@0.1.56 and GitHub release rust-v0.1.56 both exist. main still declared the published 0.1.56, which collides with the next release line. Advance the in-repo dev version so the next release no longer conflicts. No re-release: no tag create/push, no npm/bun publish, no release-workflow dispatch. - codex-rs/Cargo.toml [workspace.package].version 0.1.56 -> 0.1.57 - codex-cli/package.json version 0.1.56 -> 0.1.57 - codex-rs/Cargo.lock: workspace-crate entries regenerated to 0.1.57 - MODULE.bazel.lock: regenerated Bazel module facts for the updated Cargo lock
98abc5e to
28d5fad
Compare
|
[codewith] OpenLoops worker update for task Pushed amended head
Validation passed locally on the new head:
Not merged yet: GitHub currently reports |
|
[codewith] OpenLoops post-push gate update for task Not merging PR #117 at head Current gate state:
Failed CI blockers diagnosed from run
Follow-up todo routing created/updated for the blockers:
Main-branch comparison: latest main Bazel run |
|
Closing as obsolete after live PR0 wave2 recheck. This was a 0.1.57 dev-version bump; main is now 0.1.60 (codex-cli package plus Cargo.toml), and the PR is conflicted with failing required checks. No merge path remains. |
Summary
Reconciles the release-line drift that blocked release automation for
hasna/codewith. The0.1.56release is already fully materialized at HEAD3479752353fa:rust-v0.1.56dereferences exactly to HEAD@hasna/codewith@0.1.56already publishedrust-v0.1.56already existsmainstill declared the already-published0.1.56, which is the root cause of the tag/npm/release "already exists" blockers on the next release line. This PR advances the in-repo dev version so the next release no longer collides. There are no unreleased functional commits beyond the0.1.56tag, so a re-release would be wrong — advancing the declared version is the correct reconciliation.Changes
codex-rs/Cargo.toml[workspace.package].version:0.1.56→0.1.57codex-cli/package.jsonversion:0.1.56→0.1.57(keeps npm package in lockstep with the rust workspace)codex-rs/Cargo.lock: 127 workspace-crate entries regenerated to0.1.57(viacargo update --workspace --offline; only workspace crates changed — the unrelated externalcmake@0.1.57entry is untouched)MODULE.bazel.lock: regenerated Bazel module facts for the updated Cargo lock so Bazel CI lockfile checks match the Cargo version bumpNot touched:
sdk/typescript/package.json(independent0.1.0), rootpackage.json(no version field),CHANGELOG.md([Unreleased]remains the accumulation point; no dated0.1.57section until an actual release).Guardrails honored
No tag create/push, no npm/bun publish, no release-workflow dispatch. This is a version-declaration bump only.
Validation
cargo metadata --no-deps --format-version=1 --offline→ OK (manifests parse, lock consistent)python3 .github/scripts/verify_cargo_workspace_manifests.py→ OKgrep -rn '0\.1\.56' codex-rs/Cargo.toml codex-cli/package.json codex-rs/Cargo.lock→ 0 matchesCargo.lockdiff: exactly 127 insertions / 127 deletions, all0.1.56→0.1.57version bumpsbazel --batch ... mod deps --lockfile_mode=errorwith repo/disk caches redirected under/tmp→ OK (just bazel-lock-checkcould not run unmodified in this sandbox because.bazelrcpoints Bazel caches at read-only~/.cache)CARGO_TARGET_DIR=/tmp/pr117-cargo-target just check-fast -p codex-cli→ OKNote: 5 open PRs (#116, #115, #114, #113, #93) are future release content and are intentionally not touched by this task.
🤖 Generated with Claude Code
Note
Low Risk
Version-only bump with lockfile regeneration; no application logic or release artifacts are modified.
Overview
Advances the in-repo development version from 0.1.56 to 0.1.57 so release automation no longer collides with the already-shipped
0.1.56tag and npm publish.codex-rs/Cargo.toml[workspace.package].versionandcodex-cli/package.jsonare bumped together;codex-rs/Cargo.lockupdates all workspace crate versions to 0.1.57.MODULE.bazel.lockpicks up minor registry metadata (e.g.anyhow_1.0.103,tar_0.4.45). No functional or changelog changes—version declaration only.Reviewed by Cursor Bugbot for commit 28d5fad. Bugbot is set up for automated code reviews on this repo. Configure here.