diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2f91f79..a223b32 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - "cli-engine": "0.8.2", + "cli-engine": "0.8.3", "cli-engine-macros": "0.2.0" } diff --git a/Cargo.lock b/Cargo.lock index 4208654..c2dfa45 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -417,7 +417,7 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "cli-engine" -version = "0.8.2" +version = "0.8.3" dependencies = [ "async-trait", "base64", diff --git a/cli-engine/CHANGELOG.md b/cli-engine/CHANGELOG.md index 9b59099..f106e8c 100644 --- a/cli-engine/CHANGELOG.md +++ b/cli-engine/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.8.3](https://github.com/godaddy/cli-engine/compare/cli-engine-v0.8.2...cli-engine-v0.8.3) (2026-08-10) + + +### Bug Fixes + +* **command:** preserve typed version arguments ([#90](https://github.com/godaddy/cli-engine/issues/90)) ([50f1b5f](https://github.com/godaddy/cli-engine/commit/50f1b5f7640811352ca3810e4a37038b2ae823ba)) +* **tree:** show completion built-in in tree output ([#89](https://github.com/godaddy/cli-engine/issues/89)) ([b80406e](https://github.com/godaddy/cli-engine/commit/b80406eedec579d159550c28b5a665f003a52e2a)) + ## [0.8.2](https://github.com/godaddy/cli-engine/compare/cli-engine-v0.8.1...cli-engine-v0.8.2) (2026-08-05) diff --git a/cli-engine/Cargo.toml b/cli-engine/Cargo.toml index 71b8337..8561ae8 100644 --- a/cli-engine/Cargo.toml +++ b/cli-engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cli-engine" -version = "0.8.2" +version = "0.8.3" edition = "2024" description = "Rust CLI framework for consistent command modules" repository = "https://github.com/godaddy/cli-engine"