From 32f08caa3d17445682ad6b3d7ef34726a44100d1 Mon Sep 17 00:00:00 2001 From: hiddewie Date: Sat, 16 Nov 2024 16:14:18 +0000 Subject: [PATCH] Version 0.4.3 --- 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 6affddd..dc09030 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -828,7 +828,7 @@ dependencies = [ [[package]] name = "template-cli" -version = "0.4.2" +version = "0.4.3" dependencies = [ "assert_cmd", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 2546ddf..9f88853 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "template-cli" -version = "0.4.2" +version = "0.4.3" 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 73c7b38..c0eb25b 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.2 + .stdout(r#"template-cli 0.4.3 "#) .stderr(""); }