Skip to content

Commit

Permalink
bump version to 1.2.3 and update CHANGELOG (#508)
Browse files Browse the repository at this point in the history
  • Loading branch information
erratic-pattern authored Jun 15, 2023
1 parent 4834175 commit fdbdf6f
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 15 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.2'
default: '1.2.3'
runsOn:
description: The runner to run the workflow on
type: string
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# 1.2.3 - 2023-05-15
* Added the following build targets to the release
* `x86_64-unknown-linux-gnu`
* `arm-unknown-linux-musleabihf`
* `armv7-unknown-linux-musleabihf`
* `aarch64-unknown-linux-musl`
* Added `projects copy` command
* Added `environments copy` command
* Added `parameters copy` command
* Added creation of immutable environment tags with the `--immutable` (ex. `environments tag set --immutable <name>`)
* Fixed a bug where service accounts could not be created when no role was explicitly provided

# 1.2.2 - 2023-04-21
* make output of groups subcommands consistent with other subcommands [#482](https://github.com/cloudtruth/cloudtruth-cli/pull/482)
* a tarball of the integration test binaries generated by cargo-nextest is now included in the release artifacts [#481](https://github.com/cloudtruth/cloudtruth-cli/pull/481)
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.2"
version = "1.2.3"
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.2" }
cloudtruth-config = { path = "crates/cloudtruth-config", version = "1.2.3" }

[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.2" }
cloudtruth-installer = { path = "crates/cloudtruth-installer", version = "1.2.2" }
cloudtruth-config = { path = "crates/cloudtruth-config", version = "1.2.3" }
cloudtruth-installer = { path = "crates/cloudtruth-installer", version = "1.2.3" }
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.2"
version = "1.2.3"
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.2"
version = "1.2.3"
edition = "2021"
license = "Apache-2.0"

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

Expand Down
2 changes: 1 addition & 1 deletion crates/integration-test-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "integration-test-macros"
version = "1.2.2"
version = "1.2.3"
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.2
cloudtruth 1.2.3
CloudTruth <[email protected]>
A command-line interface to the CloudTruth configuration management service.

Expand Down

0 comments on commit fdbdf6f

Please sign in to comment.