Skip to content

Commit

Permalink
bump version to 1.2.4 (#581)
Browse files Browse the repository at this point in the history
  • Loading branch information
erratic-pattern authored Oct 25, 2023
1 parent c7087db commit 6c3bdf7
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-production-cargo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
releaseVersion:
description: CLI release version to download and install
type: string
default: '1.2.3'
default: '1.2.4'
runsOn:
description: The runner to run the workflow on
type: string
Expand Down
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.3'
default: '1.2.4'
runsOn:
description: The runner to run the workflow on
type: string
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# 1.2.4 - 2023-10-25
* added [NO_COLOR](https://no-color.org/) support for CLI error messages
* made improvements to the `install.sh` script
* will now use wget if curl is not found on the system
* enforces download with TLS 1.2
* Note: BusyBox wget does not support enforcing TLS and a warning is emitted instead
* error handling and reporting improvements
* checks that script is ran with elevated privileges and alerts user prior to doing anything
* checks for required shell commands and alerts user if they are missing (ex. `tar`, `uname`, `mktemp`)
* better error handling when attempting to create or enter the temp install directory
* alerts user with a message when download fails (instead of just showing curl status code)
* added checksums to releases

# 1.2.3 - 2023-05-15
* Added the following build targets to the release
* `arm-unknown-linux-musleabihf`
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.3"
version = "1.2.4"
description = "A command-line interface to the CloudTruth configuration management service."
authors = ["CloudTruth <[email protected]>"]
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.3" }
cloudtruth-config = { path = "crates/cloudtruth-config", version = "1.2.4" }

[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.3" }
cloudtruth-installer = { path = "crates/cloudtruth-installer", version = "1.2.3" }
cloudtruth-config = { path = "crates/cloudtruth-config", version = "1.2.4" }
cloudtruth-installer = { path = "crates/cloudtruth-installer", version = "1.2.4" }
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.3"
version = "1.2.4"
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.3"
version = "1.2.4"
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.3
cloudtruth 1.2.4
CloudTruth <[email protected]>
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.3"
version = "1.2.4"
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.3"
version = "1.2.4"
edition = "2021"
license = "Apache-2.0"

Expand Down

0 comments on commit 6c3bdf7

Please sign in to comment.