Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <support@cloudtruth.com>"]
edition = "2021"
Expand Down Expand Up @@ -44,16 +44,16 @@ 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"
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"
Expand Down
2 changes: 1 addition & 1 deletion crates/cloudtruth-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cloudtruth-config"
version = "1.2.4"
version = "1.2.5"
edition = "2021"
license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion crates/cloudtruth-installer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cloudtruth-installer"
version = "1.2.4"
version = "1.2.5"
edition = "2021"
license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion examples/help-text/cloudtruth.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
```console
$ cloudtruth --help
cloudtruth 1.2.4
cloudtruth 1.2.5
CloudTruth <support@cloudtruth.com>
A command-line interface to the CloudTruth configuration management service.

Expand Down
2 changes: 1 addition & 1 deletion tests/harness/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cloudtruth-test-harness"
version = "1.2.4"
version = "1.2.5"
edition = "2021"
license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion tests/macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cloudtruth-test-macros"
version = "1.2.4"
version = "1.2.5"
edition = "2021"
license = "Apache-2.0"

Expand Down
Loading