diff --git a/.github/workflows/test-production.yml b/.github/workflows/test-production.yml index d7467fb6..edf6f5de 100644 --- a/.github/workflows/test-production.yml +++ b/.github/workflows/test-production.yml @@ -8,7 +8,7 @@ releaseVersion: description: CLI release version to download and install type: string - default: '1.2.4' + default: '1.2.5' runsOn: description: The runner to run the workflow on type: string diff --git a/CHANGELOG.md b/CHANGELOG.md index ffe6e280..3b72f624 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 1.2.5 - 2025-04-29 +* fixed bug where overriding parameters would not correctly set values + # 1.2.4 - 2023-10-25 * added [NO_COLOR](https://no-color.org/) support for CLI error messages [#564](https://github.com/cloudtruth/cloudtruth-cli/pull/564) * made trailing newline behavior of `cloudtruth templates preview` consistent with `cloudtruth templates get` [#530](https://github.com/cloudtruth/cloudtruth-cli/pull/530) diff --git a/Cargo.lock b/Cargo.lock index 70855a28..58e6d9db 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -446,7 +446,7 @@ dependencies = [ [[package]] name = "cloudtruth" -version = "1.2.4" +version = "1.2.5" dependencies = [ "aes-gcm", "base64 0.13.1", @@ -492,7 +492,7 @@ dependencies = [ [[package]] name = "cloudtruth-config" -version = "1.2.4" +version = "1.2.5" dependencies = [ "assert_matches", "chrono", @@ -508,7 +508,7 @@ dependencies = [ [[package]] name = "cloudtruth-installer" -version = "1.2.4" +version = "1.2.5" dependencies = [ "powershell_script 1.0.4", "reqwest", @@ -529,7 +529,7 @@ dependencies = [ [[package]] name = "cloudtruth-test-harness" -version = "1.2.4" +version = "1.2.5" dependencies = [ "anyhow", "assert_cmd", @@ -556,7 +556,7 @@ dependencies = [ [[package]] name = "cloudtruth-test-macros" -version = "1.2.4" +version = "1.2.5" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 6fbbf222..529b6415 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cloudtruth" -version = "1.2.4" +version = "1.2.5" description = "A command-line interface to the CloudTruth configuration management service." authors = ["CloudTruth "] edition = "2021" @@ -44,7 +44,7 @@ ca-certificates = "*" [build-dependencies] clap = "2.33.3" -cloudtruth-config = { path = "crates/cloudtruth-config", version = "1.2.4" } +cloudtruth-config = { path = "crates/cloudtruth-config", version = "1.2.5" } [dependencies] aes-gcm = "0.9.2" @@ -52,8 +52,8 @@ base64 = "0.13.0" chacha20poly1305 = "0.8.0" chrono = "0.4.23" clap = "2.33.3" -cloudtruth-config = { path = "crates/cloudtruth-config", version = "1.2.4" } -cloudtruth-installer = { path = "crates/cloudtruth-installer", version = "1.2.4" } +cloudtruth-config = { path = "crates/cloudtruth-config", version = "1.2.5" } +cloudtruth-installer = { path = "crates/cloudtruth-installer", version = "1.2.5" } cloudtruth-restapi = { path = "crates/cloudtruth-restapi" } color-eyre = "0.5" csv = "1.1.6" diff --git a/crates/cloudtruth-config/Cargo.toml b/crates/cloudtruth-config/Cargo.toml index 90e16e1f..a13897c0 100644 --- a/crates/cloudtruth-config/Cargo.toml +++ b/crates/cloudtruth-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cloudtruth-config" -version = "1.2.4" +version = "1.2.5" edition = "2021" license = "Apache-2.0" diff --git a/crates/cloudtruth-installer/Cargo.toml b/crates/cloudtruth-installer/Cargo.toml index c104372c..5f615f34 100644 --- a/crates/cloudtruth-installer/Cargo.toml +++ b/crates/cloudtruth-installer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cloudtruth-installer" -version = "1.2.4" +version = "1.2.5" edition = "2021" license = "Apache-2.0" diff --git a/examples/help-text/cloudtruth.md b/examples/help-text/cloudtruth.md index bac2e412..926aa36f 100644 --- a/examples/help-text/cloudtruth.md +++ b/examples/help-text/cloudtruth.md @@ -1,6 +1,6 @@ ```console $ cloudtruth --help -cloudtruth 1.2.4 +cloudtruth 1.2.5 CloudTruth A command-line interface to the CloudTruth configuration management service. diff --git a/tests/harness/Cargo.toml b/tests/harness/Cargo.toml index 243aed20..432e65ca 100644 --- a/tests/harness/Cargo.toml +++ b/tests/harness/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cloudtruth-test-harness" -version = "1.2.4" +version = "1.2.5" edition = "2021" license = "Apache-2.0" diff --git a/tests/macros/Cargo.toml b/tests/macros/Cargo.toml index e134281b..234794ae 100644 --- a/tests/macros/Cargo.toml +++ b/tests/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cloudtruth-test-macros" -version = "1.2.4" +version = "1.2.5" edition = "2021" license = "Apache-2.0"