diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 678c700..21176d7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - "cli-engine": "0.8.0", + "cli-engine": "0.8.1", "cli-engine-macros": "0.2.0" } diff --git a/Cargo.lock b/Cargo.lock index 0463eae..1307ecb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -417,7 +417,7 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "cli-engine" -version = "0.8.0" +version = "0.8.1" dependencies = [ "async-trait", "base64", diff --git a/cli-engine/CHANGELOG.md b/cli-engine/CHANGELOG.md index dceef8a..5b29d03 100644 --- a/cli-engine/CHANGELOG.md +++ b/cli-engine/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.8.1](https://github.com/godaddy/cli-engine/compare/cli-engine-v0.8.0...cli-engine-v0.8.1) (2026-08-05) + + +### Bug Fixes + +* **auth:** retry ExecProvider spawn on transient ETXTBSY ([#84](https://github.com/godaddy/cli-engine/issues/84)) ([b2be4f3](https://github.com/godaddy/cli-engine/commit/b2be4f38bb6c7ae610fea50e55e2ec2b67abdfe1)) +* **output:** prefix pagination next_actions with the binary name ([#86](https://github.com/godaddy/cli-engine/issues/86)) ([f65ae91](https://github.com/godaddy/cli-engine/commit/f65ae91468c0e85d2ff00b1cb71990002417f44c)) + ## [0.8.0](https://github.com/godaddy/cli-engine/compare/cli-engine-v0.7.0...cli-engine-v0.8.0) (2026-08-04) diff --git a/cli-engine/Cargo.toml b/cli-engine/Cargo.toml index 8d010b1..4f41de2 100644 --- a/cli-engine/Cargo.toml +++ b/cli-engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cli-engine" -version = "0.8.0" +version = "0.8.1" edition = "2024" description = "Rust CLI framework for consistent command modules" repository = "https://github.com/godaddy/cli-engine"