Skip to content

Commit

Permalink
version bump 1.2.2 (#483)
Browse files Browse the repository at this point in the history
* version bump 1.2.2

* fix wildcard matcher for releases

* fix wildcard matcher for releases

* fix wildcard matcher for releases
  • Loading branch information
erratic-pattern authored Apr 21, 2023
1 parent ce77789 commit 60d87a5
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/create-draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ run-name: Create Draft Release (${{ github.ref_name }})
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+-?**'
- '[0-9]+.[0-9]+.[0-9]+**'

# prevent multiple releases from running at the same time
concurrency:
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# 1.2.1 - 2023-04-17
# 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)

# 1.2.2 - 2023-04-17
* Bug fix: workaround to populate rules array on types partial update [#443](https://github.com/cloudtruth/cloudtruth-cli/pull/443)
* Fix to RPM builds to support CentOS 7 and RHEL 7 [#474](https://github.com/cloudtruth/cloudtruth-cli/pull/474)

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.1"
version = "1.2.2"
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.1" }
cloudtruth-config = { path = "crates/cloudtruth-config", version = "1.2.2" }

[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.1" }
cloudtruth-installer = { path = "crates/cloudtruth-installer", version = "1.2.1" }
cloudtruth-config = { path = "crates/cloudtruth-config", version = "1.2.2" }
cloudtruth-installer = { path = "crates/cloudtruth-installer", version = "1.2.2" }
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.1"
version = "1.2.2"
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.1"
version = "1.2.2"
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.1"
version = "1.2.2"
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.1"
version = "1.2.2"
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.1
cloudtruth 1.2.2
CloudTruth <[email protected]>
A command-line interface to the CloudTruth configuration management service.

Expand Down

0 comments on commit 60d87a5

Please sign in to comment.