diff --git a/CHANGELOG.md b/CHANGELOG.md index 894afc4..7c1ebc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.5](https://github.com/eopb/cargo-override/compare/v0.0.4...v0.0.5) - 2024-09-14 + +### Added + +- Support for Windows, tested in CI + +### Fixed + +- Escaping of paths which was causing panics on Windows ([#134](https://github.com/eopb/cargo-override/pull/134)) +- Typos in error messages ([#143](https://github.com/eopb/cargo-override/pull/143)) + +### Other + +- Some dependency upgrades + ## [0.0.4](https://github.com/eopb/cargo-override/compare/v0.0.3...v0.0.4) - 2024-09-11 ### Added diff --git a/Cargo.lock b/Cargo.lock index 2a241ee..4a1a1b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -339,7 +339,7 @@ dependencies = [ [[package]] name = "cargo-override" -version = "0.0.4" +version = "0.0.5" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index f2afea2..c653bb2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-override" -version = "0.0.4" +version = "0.0.5" edition = "2021" rust-version = "1.79" license = "Apache-2.0 OR MIT"