From c56bc220ff9ec55db55bfcd5467860a26815a1de Mon Sep 17 00:00:00 2001 From: Matthew Warren Date: Mon, 19 May 2025 15:31:20 -0400 Subject: [PATCH] 1.2.7 version bump --- .github/workflows/test-production.yml | 2 +- CHANGELOG.md | 3 +++ Cargo.lock | 10 +++++----- Cargo.toml | 8 ++++---- crates/cloudtruth-config/Cargo.toml | 2 +- crates/cloudtruth-installer/Cargo.toml | 2 +- examples/help-text/cloudtruth.md | 2 +- tests/harness/Cargo.toml | 2 +- tests/macros/Cargo.toml | 2 +- 9 files changed, 18 insertions(+), 15 deletions(-) diff --git a/.github/workflows/test-production.yml b/.github/workflows/test-production.yml index aefa60cb..0a3d4303 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.6' + default: '1.2.7' runsOn: description: The runner to run the workflow on type: string diff --git a/CHANGELOG.md b/CHANGELOG.md index 06d1c1d7..e186e7ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 1.2.7 - 2025-05-19 +* updated parameters will now properly update their values + # 1.2.6 - 2025-04-29 * fixed bug where values of overridden parameters were not updated correctly diff --git a/Cargo.lock b/Cargo.lock index 9bdac770..9a9030ff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -446,7 +446,7 @@ dependencies = [ [[package]] name = "cloudtruth" -version = "1.2.6" +version = "1.2.7" dependencies = [ "aes-gcm", "base64 0.13.1", @@ -492,7 +492,7 @@ dependencies = [ [[package]] name = "cloudtruth-config" -version = "1.2.6" +version = "1.2.7" dependencies = [ "assert_matches", "chrono", @@ -508,7 +508,7 @@ dependencies = [ [[package]] name = "cloudtruth-installer" -version = "1.2.6" +version = "1.2.7" dependencies = [ "powershell_script 1.0.4", "reqwest", @@ -529,7 +529,7 @@ dependencies = [ [[package]] name = "cloudtruth-test-harness" -version = "1.2.6" +version = "1.2.7" dependencies = [ "anyhow", "assert_cmd", @@ -556,7 +556,7 @@ dependencies = [ [[package]] name = "cloudtruth-test-macros" -version = "1.2.6" +version = "1.2.7" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index e8551d0e..0ce33cb3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cloudtruth" -version = "1.2.6" +version = "1.2.7" 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.6" } +cloudtruth-config = { path = "crates/cloudtruth-config", version = "1.2.7" } [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.6" } -cloudtruth-installer = { path = "crates/cloudtruth-installer", version = "1.2.6" } +cloudtruth-config = { path = "crates/cloudtruth-config", version = "1.2.7" } +cloudtruth-installer = { path = "crates/cloudtruth-installer", version = "1.2.7" } 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 482bb81c..2727d736 100644 --- a/crates/cloudtruth-config/Cargo.toml +++ b/crates/cloudtruth-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cloudtruth-config" -version = "1.2.6" +version = "1.2.7" edition = "2021" license = "Apache-2.0" diff --git a/crates/cloudtruth-installer/Cargo.toml b/crates/cloudtruth-installer/Cargo.toml index b0603fc8..33f83614 100644 --- a/crates/cloudtruth-installer/Cargo.toml +++ b/crates/cloudtruth-installer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cloudtruth-installer" -version = "1.2.6" +version = "1.2.7" edition = "2021" license = "Apache-2.0" diff --git a/examples/help-text/cloudtruth.md b/examples/help-text/cloudtruth.md index 3d13c2ff..33cb0c4d 100644 --- a/examples/help-text/cloudtruth.md +++ b/examples/help-text/cloudtruth.md @@ -1,6 +1,6 @@ ```console $ cloudtruth --help -cloudtruth 1.2.6 +cloudtruth 1.2.7 CloudTruth A command-line interface to the CloudTruth configuration management service. diff --git a/tests/harness/Cargo.toml b/tests/harness/Cargo.toml index fd68461d..711769a1 100644 --- a/tests/harness/Cargo.toml +++ b/tests/harness/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cloudtruth-test-harness" -version = "1.2.6" +version = "1.2.7" edition = "2021" license = "Apache-2.0" diff --git a/tests/macros/Cargo.toml b/tests/macros/Cargo.toml index 06e9f85c..810d9319 100644 --- a/tests/macros/Cargo.toml +++ b/tests/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cloudtruth-test-macros" -version = "1.2.6" +version = "1.2.7" edition = "2021" license = "Apache-2.0"