diff --git a/CHANGELOG.md b/CHANGELOG.md index d2a5da6..5d0e8df 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.8.0...HEAD + +## [0.8.0] - 27-12-2023 + ### Added - A GitHub Action `cargo-multivers` is available to help build a binary in your CI and make it available during a release. @@ -22,7 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/). - Return an error on invalid CPUs from `--cpus` or from `cpu` list in `[package.metadata.multivers.ARCH]`. - Fix build error when `--target-dir` is given as an argument to cargo build (e.g., `cargo multivers -- --target-dir target_dir`) -[Unreleased]: https://github.com/ronnychevalier/cargo-multivers/compare/v0.7.0...HEAD +[0.8.0]: https://github.com/ronnychevalier/cargo-multivers/compare/v0.7.0...v0.8.0 ## [0.7.0] - 18-12-2023 diff --git a/Cargo.lock b/Cargo.lock index fd2cf24..f71fc33 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -156,7 +156,7 @@ dependencies = [ [[package]] name = "cargo-multivers" -version = "0.7.0" +version = "0.8.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index fdfdc43..b6aff85 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-multivers" -version = "0.7.0" +version = "0.8.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 = "2021" readme = "README.md"