diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c2dbc1..894afc4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4](https://github.com/eopb/cargo-override/compare/v0.0.3...v0.0.4) - 2024-09-11 + +### Added + +- Implement `--force` flag for ignoring correctness and compatibility checks ([#127](https://github.com/eopb/cargo-override/pull/127)) + ## [0.0.3](https://github.com/eopb/cargo-override/compare/v0.0.2...v0.0.3) - 2024-09-08 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 3872772..b946603 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -339,7 +339,7 @@ dependencies = [ [[package]] name = "cargo-override" -version = "0.0.3" +version = "0.0.4" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 4df7bef..c24c3e9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-override" -version = "0.0.3" +version = "0.0.4" edition = "2021" rust-version = "1.79" license = "Apache-2.0 OR MIT"