diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 218393f..4cff5b9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.4.1" + ".": "0.4.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ceebf8..5d18636 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.4.2](https://github.com/godaddy/cli-engine/compare/cli-engine-v0.4.1...cli-engine-v0.4.2) (2026-07-08) + + +### Features + +* add stage-based feature flagging for modules, groups, and commands ([#43](https://github.com/godaddy/cli-engine/issues/43)) ([67038d4](https://github.com/godaddy/cli-engine/commit/67038d4bd0e132168820ee67c2b7ccc5b1d16a75)) + ## [0.4.1](https://github.com/godaddy/cli-engine/compare/cli-engine-v0.4.0...cli-engine-v0.4.1) (2026-07-08) diff --git a/Cargo.lock b/Cargo.lock index 10a0188..a1006db 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -406,7 +406,7 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "cli-engine" -version = "0.4.1" +version = "0.4.2" dependencies = [ "async-trait", "base64", diff --git a/Cargo.toml b/Cargo.toml index a2c8427..b451ee1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cli-engine" -version = "0.4.1" +version = "0.4.2" edition = "2024" description = "Rust CLI framework for consistent command modules" repository = "https://github.com/godaddy/cli-engine"