chore: bump version to 0.2.1 - #66
Conversation
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
PR Summary by QodoBump crate version to v0.2.1
AI Description
High-Level Assessment
Files changed (2)
|
Code Review by Qodo
1. Release docs version mismatch
|
| [package] | ||
| name = "keenable-cli" | ||
| version = "0.2.0" | ||
| version = "0.2.1" |
There was a problem hiding this comment.
1. Release docs version mismatch 🐞 Bug ⚙ Maintainability
After bumping the crate to 0.2.1, RELEASE.md still instructs running cargo set-version 0.2.0 and tagging v0.2.0, which can lead to cutting/pushing the wrong tag and producing a release that doesn’t match the code’s declared version.
Agent Prompt
## Issue description
The crate version is now 0.2.1, but `RELEASE.md` still hardcodes `0.2.0` in the example commands. This can lead maintainers to accidentally set/tag the wrong version during the release process.
## Issue Context
The release workflow is tag-driven, so the tag you create/push matters.
## Fix Focus Areas
- RELEASE.md[5-19]
- Cargo.toml[1-6]
- .github/workflows/release.yml[20-46]
## Suggested fix
Update the hardcoded `0.2.0` examples in `RELEASE.md` to `0.2.1`, or (preferably) replace hardcoded versions with a placeholder (e.g. `<version>`) to avoid future staleness.
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools
Release v0.2.1: the
--query-timeflag for point-in-time search (#65).After merge, tagging
v0.2.1on main triggers the release workflow (binaries, installers, Homebrew tap), per RELEASE.md.🤖 Generated with Claude Code