Skip to content

Commit

Permalink
1.0.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rickporter-tuono authored Aug 13, 2021
1 parent cb96fe5 commit 4c741ef
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 1.0.4 - 2021-08-13

* Added `template edit` for easier template modification.
* Added `environment tree` to display environment inheritance.
* Added `parameter environment` to display values of a single parameter in all environments.
* Require user to confirm a `parameter delete` using the `--yes` flag or a prompt.
* Performance improvement for `parameter get`.
* Upgrade to Rust 1.54.

# 1.0.3 - 2021-08-06

* Added `parameters difference` command to compare parameters between two different environments.
Expand Down
4 changes: 3 additions & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cloudtruth"
version = "1.0.3"
version = "1.0.4"
description = "A command-line interface to the CloudTruth configuration management service."
authors = ["CloudTruth <[email protected]>"]
edition = "2018"
Expand Down
3 changes: 3 additions & 0 deletions client/src/models/object_type_enum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ pub enum ObjectTypeEnum {
Organization,
#[serde(rename = "Parameter")]
Parameter,
#[serde(rename = "ParameterRule")]
ParameterRule,
#[serde(rename = "Project")]
Project,
#[serde(rename = "ServiceAccount")]
Expand All @@ -42,6 +44,7 @@ impl ToString for ObjectTypeEnum {
Self::Membership => String::from("Membership"),
Self::Organization => String::from("Organization"),
Self::Parameter => String::from("Parameter"),
Self::ParameterRule => String::from("ParameterRule"),
Self::Project => String::from("Project"),
Self::ServiceAccount => String::from("ServiceAccount"),
Self::Template => String::from("Template"),
Expand Down
1 change: 1 addition & 0 deletions openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3415,6 +3415,7 @@ components:
- Membership
- Organization
- Parameter
- ParameterRule
- Project
- ServiceAccount
- Template
Expand Down
2 changes: 1 addition & 1 deletion tests/help.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cloudtruth 1.0.3
cloudtruth 1.0.4
CloudTruth <[email protected]>
A command-line interface to the CloudTruth configuration management service.

Expand Down

0 comments on commit 4c741ef

Please sign in to comment.