diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0477999..6969ddf 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.2" + ".": "0.3.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 72a50c6..0aff6e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.3.3](https://github.com/godaddy/cli-engine/compare/cli-engine-v0.3.2...cli-engine-v0.3.3) (2026-06-25) + + +### Features + +* add shell completion built-in (generate + install) ([#30](https://github.com/godaddy/cli-engine/issues/30)) ([021a45e](https://github.com/godaddy/cli-engine/commit/021a45e714237c6794038670dad79bd7e38952ce)) + ## [0.3.2](https://github.com/godaddy/cli-engine/compare/cli-engine-v0.3.1...cli-engine-v0.3.2) (2026-06-24) diff --git a/Cargo.lock b/Cargo.lock index 443d80c..dfd73d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -406,7 +406,7 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "cli-engine" -version = "0.3.2" +version = "0.3.3" dependencies = [ "async-trait", "base64", diff --git a/Cargo.toml b/Cargo.toml index cdd2126..d868a97 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cli-engine" -version = "0.3.2" +version = "0.3.3" edition = "2024" description = "Rust CLI framework for consistent command modules" repository = "https://github.com/godaddy/cli-engine"