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
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "keenable-cli"
version = "0.2.0"
version = "0.2.1"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remediation recommended

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

edition = "2024"
description = "Keenable CLI — authenticate, manage API keys, configure MCP, and search the web"
authors = ["grigorevp <grigoryev.pete@gmail.com>"]
Expand Down
Loading