diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2537c1f..218393f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.4.0" + ".": "0.4.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c83323a..4ceebf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.4.1](https://github.com/godaddy/cli-engine/compare/cli-engine-v0.4.0...cli-engine-v0.4.1) (2026-07-08) + + +### Bug Fixes + +* substitute known NextAction params in human output ([#41](https://github.com/godaddy/cli-engine/issues/41)) ([86b4bd7](https://github.com/godaddy/cli-engine/commit/86b4bd7ac6d5235c90ce68d1285fa9a6c0559be6)) + ## [0.4.0](https://github.com/godaddy/cli-engine/compare/cli-engine-v0.3.5...cli-engine-v0.4.0) (2026-07-07) diff --git a/Cargo.lock b/Cargo.lock index 3268b71..10a0188 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -406,7 +406,7 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "cli-engine" -version = "0.4.0" +version = "0.4.1" dependencies = [ "async-trait", "base64", diff --git a/Cargo.toml b/Cargo.toml index 1a86683..a2c8427 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cli-engine" -version = "0.4.0" +version = "0.4.1" edition = "2024" description = "Rust CLI framework for consistent command modules" repository = "https://github.com/godaddy/cli-engine"