diff --git a/CHANGELOG.md b/CHANGELOG.md index c5d4e58..70911c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.14](https://github.com/elkowar/yolk/compare/v0.0.13...v0.0.14) - 2024-12-21 + +### Added + +- Add support for importing files in yolk.rhai +- support multiline tags +- Add a few more comment symbols + +### Fixed + +- Prevent yolk from comitting inconsistent state when syncing fails + ## [0.0.13](https://github.com/elkowar/yolk/compare/v0.0.12...v0.0.13) - 2024-12-18 ### Added diff --git a/Cargo.lock b/Cargo.lock index df03959..5c1f7da 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1968,7 +1968,7 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" [[package]] name = "yolk_dots" -version = "0.0.13" +version = "0.0.14" dependencies = [ "assert_fs", "cached", diff --git a/Cargo.toml b/Cargo.toml index 179ba0c..fe48e5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "yolk_dots" authors = ["ElKowar "] description = "Templated dotfile management without template files" -version = "0.0.13" +version = "0.0.14" edition = "2021" repository = "https://github.com/elkowar/yolk" homepage = "https://elkowar.github.io/yolk"