diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..6a74ca3 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,17 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +## [Unreleased] + +## [0.2.0] - 2024-06-25 + +### Added + +- Support escaped command invocations ([#8]). + +[#8]: https://github.com/stackabletech/config-utils/pull/8 + +## [0.1.0] - 2024-06-14 + +Initial release diff --git a/Cargo.lock b/Cargo.lock index 9575d9d..4a0feb3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -137,7 +137,7 @@ checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422" [[package]] name = "config-utils" -version = "0.1.0" +version = "0.2.0" dependencies = [ "clap", "lazy_static", diff --git a/Cargo.toml b/Cargo.toml index 4696252..1a4969d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "config-utils" -version = "0.1.0" +version = "0.2.0" authors = ["Stackable GmbH "] license = "Apache-2.0" edition = "2021"