chore(release): bump version to 0.2.3#294
Conversation
Co-Authored-By: Sachin Iyer <siyer@detail.dev>
Original prompt from Sachin
|
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
Co-Authored-By: Sachin Iyer <siyer@detail.dev>
There was a problem hiding this comment.
1 issue found across 2 files (changes from recent commits).
Prompt for AI agents (unresolved issues)
Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.
<file name="Cargo.toml">
<violation number="1" location="Cargo.toml:6">
P1: The manifest version is set to 0.2.3 instead of the intended 0.3.0, which will produce incorrectly versioned release artifacts.</violation>
</file>
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.
Re-trigger cubic
| [package] | ||
| name = "detail-cli" | ||
| version = "0.2.2" | ||
| version = "0.2.3" |
There was a problem hiding this comment.
P1: The manifest version is set to 0.2.3 instead of the intended 0.3.0, which will produce incorrectly versioned release artifacts.
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At Cargo.toml, line 6:
<comment>The manifest version is set to 0.2.3 instead of the intended 0.3.0, which will produce incorrectly versioned release artifacts.</comment>
<file context>
@@ -3,7 +3,7 @@ members = [".", "xtask"]
[package]
name = "detail-cli"
-version = "0.3.0"
+version = "0.2.3"
edition = "2021"
authors = ["Detail Team <eng@detail.dev>"]
</file context>
| version = "0.2.3" | |
| version = "0.3.0" |
QA Test Results — v0.2.3 ReleaseRan 27 test cases against the built binary ( 26/27 passed. 1 failure (pre-existing, not introduced by version bump). Failure: T4 — Comma-separated
|
| # | Test | Result |
|---|---|---|
| T1 | --version → detail 0.2.3 |
✅ |
| T2 | version subcommand → detail-cli v0.2.3 |
✅ |
| T3 | bugs list default |
✅ |
| T4 | bugs list --status pending,resolved (comma) |
❌ hangs |
| T5 | bugs list --status pending --status dismissed (repeated) |
✅ |
| T6 | bugs list --since 7d |
✅ |
| T7 | bugs list --until 2026-05-10 |
✅ |
| T8 | bugs list --since/--until combined |
✅ |
| T9 | bugs list --all auto-pagination |
✅ |
| T10 | bugs list --format json |
✅ |
| T11 | bugs list card shows File/Introduced/PR |
✅ |
| T12 | bugs list --vulns empty-results hint |
✅ |
| T13 | bugs show table format |
✅ |
| T14 | bugs show --format json |
✅ |
| T15 | bugs reopen + cleanup re-close |
✅ |
| T16 | scans list default |
✅ |
| T17 | scans list --status complete |
✅ |
| T18 | scans list --scan-type recent-changes |
✅ |
| T19 | scans list --since 1d |
✅ |
| T20 | scans list --format json |
✅ |
| T21 | completions bash → stdout |
✅ |
| T22 | completions zsh → stdout |
✅ |
| T23 | auth status |
✅ |
| T24 | repos list --page 2 |
✅ |
| T25 | Error includes HTTP status (403) | ✅ |
| T26 | No-auth graceful error | ✅ |
| T27 | --help for new subcommands |
✅ |
Summary
Bumps the CLI version from 0.2.2 → 0.2.3 in
Cargo.tomlandCargo.lock. On merge, the release workflow will auto-tagv0.2.3and publish platform artifacts via cargo-dist.This rolls up the 18 commits merged since v0.2.2, including:
bugs list:--all,--since/--until, multi-value--status,--format json, file path & security flag in cardsbugs reopensubcommandbugs show/bugs close:--format jsonscans list:--status,--scan-type,--since/--untilfilters; polished card outputcompletions: print snippet to stdout instead of writing to dotfilesconfig: preserve comments and unknown keys in config.tomlReview & Testing Checklist for Human
v0.2.3tag and GitHub Release with platform artifactsdetail 0.2.3viadetail --versionNotes
The diff is two lines — only the version string in
Cargo.tomlandCargo.lock. All CI checks (fmt, clippy, tests) pass locally.Link to Devin session: https://app.devin.ai/sessions/a3821bb5de764dd1a53ba4929c0a791a
Requested by: @sachiniyer