diff --git a/CHANGELOG.md b/CHANGELOG.md index ad2ad87..ce5d6d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] +[Unreleased]: https://github.com/ronnychevalier/cargo-multivers/compare/v0.9.0...HEAD + +## [0.9.0] - 26-07-2024 + ### Added - Define default CPUs for `x86-64` using [microarchitecture levels](https://en.wikipedia.org/wiki/X86-64#Microarchitecture_levels): `x86-64,x86-64-v2,x86-64-v3,x86-64-v4`. It helps to limit build times ([#6](https://github.com/ronnychevalier/cargo-multivers/issues/6)). @@ -16,7 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/). - Update dependencies. - MSRV is now 1.80. -[Unreleased]: https://github.com/ronnychevalier/cargo-multivers/compare/v0.8.1...HEAD +[0.9.0]: https://github.com/ronnychevalier/cargo-multivers/compare/v0.8.1...v0.9.0 ## [0.8.1] - 17-02-2024 diff --git a/Cargo.lock b/Cargo.lock index 8fe883b..a7c34e7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -151,7 +151,7 @@ dependencies = [ [[package]] name = "cargo-multivers" -version = "0.8.1" +version = "0.9.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 81a4450..d01a4b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-multivers" -version = "0.8.1" +version = "0.9.0" description = "Cargo subcommand to build multiple versions of the same binary, each with a different CPU features set, merged into a single portable optimized binary" edition.workspace = true readme = "README.md"