From ad4ca5e7491f9f2b60ef0b9ccd147e9c01082ed4 Mon Sep 17 00:00:00 2001 From: hiddewie Date: Sat, 27 Apr 2024 12:23:24 +0000 Subject: [PATCH] Version 0.4.1 --- 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 dfcbccb..7d3d9fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -826,7 +826,7 @@ dependencies = [ [[package]] name = "template-cli" -version = "0.4.0" +version = "0.4.1" dependencies = [ "assert_cmd", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 6331175..08f602f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "template-cli" -version = "0.4.0" +version = "0.4.1" 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 221b6e1..4b63720 100644 --- a/tests/integration_tests.rs +++ b/tests/integration_tests.rs @@ -72,7 +72,7 @@ fn version() { assert .success() - .stdout(r#"template-cli 0.4.0 + .stdout(r#"template-cli 0.4.1 "#) .stderr(""); }