diff --git a/CHANGELOG.md b/CHANGELOG.md index e078b0b..5032f30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.4.0 (2024-02-11) + +- Enforces config.toml `[[items]]` `name` property is a unique value to + prevent dirname conflicts +- Removes config.toml `[[items]]` `git_url` property +- Adds config.toml `[[items]]` `path` property which supports git URLs + as well as path to local repo dir + ## 0.3.0 (2024-02-10) - Add support for base24 templates diff --git a/Cargo.lock b/Cargo.lock index 2fdbbb6..5fc1b56 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -355,7 +355,7 @@ dependencies = [ [[package]] name = "tinty" -version = "0.3.0" +version = "0.4.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 8073009..63e4502 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tinty" description = "Change the theme of your terminal, text editor and anything else with one command!" -version = "0.3.0" +version = "0.4.0" edition = "2021" license = "MIT" readme = "README.md"