From 20048bbb783048d02d507690364e13b8222fc0f8 Mon Sep 17 00:00:00 2001 From: hiddewie Date: Sun, 21 Apr 2024 19:35:45 +0000 Subject: [PATCH] Version 0.4.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- tests/integration_tests.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e7af97a..dfcbccb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -826,7 +826,7 @@ dependencies = [ [[package]] name = "template-cli" -version = "0.3.7" +version = "0.4.0" dependencies = [ "assert_cmd", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 026a9c6..6331175 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "template-cli" -version = "0.3.7" +version = "0.4.0" edition = "2021" authors = ["Hidde Wieringa "] description = "CLI for templating based on JSON, YAML or HCL configuration" diff --git a/tests/integration_tests.rs b/tests/integration_tests.rs index 687c40f..223e955 100644 --- a/tests/integration_tests.rs +++ b/tests/integration_tests.rs @@ -72,7 +72,7 @@ fn version() { assert .success() - .stdout(r#"template-cli 0.3.7 + .stdout(r#"template-cli 0.4.0 "#) .stderr(""); }