From 4c741ef1c9345b0dafacedd9d925ab48fd15fd82 Mon Sep 17 00:00:00 2001 From: Rick Porter Date: Fri, 13 Aug 2021 10:31:08 -0400 Subject: [PATCH] 1.0.4 release --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 4 +++- Cargo.toml | 2 +- client/src/models/object_type_enum.rs | 3 +++ openapi.yml | 1 + tests/help.txt | 2 +- 6 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f73ea3d..00296015 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/Cargo.lock b/Cargo.lock index df4772e2..3db8ad97 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "addr2line" version = "0.16.0" @@ -295,7 +297,7 @@ dependencies = [ [[package]] name = "cloudtruth" -version = "1.0.3" +version = "1.0.4" dependencies = [ "aes-gcm", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 71340875..fe474647 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] edition = "2018" diff --git a/client/src/models/object_type_enum.rs b/client/src/models/object_type_enum.rs index e68e239c..ea3d1552 100644 --- a/client/src/models/object_type_enum.rs +++ b/client/src/models/object_type_enum.rs @@ -23,6 +23,8 @@ pub enum ObjectTypeEnum { Organization, #[serde(rename = "Parameter")] Parameter, + #[serde(rename = "ParameterRule")] + ParameterRule, #[serde(rename = "Project")] Project, #[serde(rename = "ServiceAccount")] @@ -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"), diff --git a/openapi.yml b/openapi.yml index 12437386..4bc0e9ae 100644 --- a/openapi.yml +++ b/openapi.yml @@ -3415,6 +3415,7 @@ components: - Membership - Organization - Parameter + - ParameterRule - Project - ServiceAccount - Template diff --git a/tests/help.txt b/tests/help.txt index 336c8fe3..154fa0f5 100644 --- a/tests/help.txt +++ b/tests/help.txt @@ -1,4 +1,4 @@ -cloudtruth 1.0.3 +cloudtruth 1.0.4 CloudTruth A command-line interface to the CloudTruth configuration management service.