Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .claude/worktrees/exciting-sanderson-31d3c9
Submodule exciting-sanderson-31d3c9 deleted from 9d733d
1 change: 0 additions & 1 deletion .claude/worktrees/phase-10-1-multi-conn
Submodule phase-10-1-multi-conn deleted from d4ba5f
1 change: 0 additions & 1 deletion .claude/worktrees/phase-11-2-logical-clock
Submodule phase-11-2-logical-clock deleted from 77b51c
1 change: 0 additions & 1 deletion .claude/worktrees/phase-11-3-mvstore
Submodule phase-11-3-mvstore deleted from 8c9c74
1 change: 0 additions & 1 deletion .claude/worktrees/phase-11-4-begin-concurrent
Submodule phase-11-4-begin-concurrent deleted from e7befd
1 change: 0 additions & 1 deletion .claude/worktrees/phase-11-5-read-path
Submodule phase-11-5-read-path deleted from 7cadb3
1 change: 0 additions & 1 deletion .claude/worktrees/phase-11-6-gc
Submodule phase-11-6-gc deleted from 6e4aca
1 change: 0 additions & 1 deletion .claude/worktrees/phase-11-7-sdk-busy
Submodule phase-11-7-sdk-busy deleted from c1336b
1 change: 0 additions & 1 deletion .claude/worktrees/phase-11-8-multi-handle-sdk
Submodule phase-11-8-multi-handle-sdk deleted from a57cf0
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,12 @@ examples/wasm/pkg

# macOS
.DS_Store

# Local agent / Claude Code worktrees. These shouldn't ever get
# committed — but `git add -A` from main while a worktree is live
# under .claude/worktrees/<name>/ will capture it as a gitlink
# (mode 160000) because the worktree dir looks like a submodule to
# the parent index. Ignoring the whole tree prevents that whole
# class of accident. (The release commit 937f8b4 hit exactly this
# bug; the next commit untracks the leftover gitlinks.)
.claude/worktrees/
21 changes: 18 additions & 3 deletions scripts/bump-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,21 @@ fi

echo
echo "Done. Next steps:"
echo " cargo build # refresh Cargo.lock with the new versions"
echo " git diff # inspect the twelve-file bump"
echo " git checkout . # or back out if it looks wrong"
echo " cargo build # refresh Cargo.lock with the new versions"
echo " git diff # inspect the twelve-file bump"
echo " git checkout . # or back out if it looks wrong"
echo
echo "When the diff looks right, commit + tag with the EXACT message the"
echo "release workflow's detect job expects (regex"
echo " ^release: v[0-9]+\\.[0-9]+\\.[0-9]+\$"
echo "in .github/workflows/release.yml). Any other message and the"
echo "release pipeline silently skips publish:"
echo
echo " git commit -am 'release: v${VERSION}'"
echo " git tag v${VERSION}"
echo " git push && git push --tags"
echo
echo "If a push lands with a different commit-message format, the"
echo "release workflow can be retriggered manually:"
echo
echo " gh workflow run release.yml -f version=${VERSION}"
Loading