From 72c6ee6de93b0ac0a780cf9756a31dd71435df64 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2026 23:35:34 +0000 Subject: [PATCH] chore(main): release cli-engine 0.4.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 12 ++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index fd1c548..2537c1f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.5" + ".": "0.4.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f04bc0d..c83323a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.4.0](https://github.com/godaddy/cli-engine/compare/cli-engine-v0.3.5...cli-engine-v0.4.0) (2026-07-07) + + +### ⚠ BREAKING CHANGES + +* add no_truncate opt-out for table columns in human output ([#40](https://github.com/godaddy/cli-engine/issues/40)) + +### Features + +* add no_truncate opt-out for table columns in human output ([#40](https://github.com/godaddy/cli-engine/issues/40)) ([4adb998](https://github.com/godaddy/cli-engine/commit/4adb998bca8cca2fc2b2b82a022e0b064f33d0c2)) +* render guide markdown for human output with termimad ([#38](https://github.com/godaddy/cli-engine/issues/38)) ([d4d8383](https://github.com/godaddy/cli-engine/commit/d4d838357429132343a64f92c23c733253cae5c7)) + ## [0.3.5](https://github.com/godaddy/cli-engine/compare/cli-engine-v0.3.4...cli-engine-v0.3.5) (2026-07-01) diff --git a/Cargo.lock b/Cargo.lock index e03c6dd..3268b71 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -406,7 +406,7 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "cli-engine" -version = "0.3.5" +version = "0.4.0" dependencies = [ "async-trait", "base64", diff --git a/Cargo.toml b/Cargo.toml index 0f98f83..1a86683 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cli-engine" -version = "0.3.5" +version = "0.4.0" edition = "2024" description = "Rust CLI framework for consistent command modules" repository = "https://github.com/godaddy/cli-engine"