diff --git a/CHANGELOG.md b/CHANGELOG.md index ee88317..e3ba83b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] +[Unreleased]: https://github.com/ronnychevalier/cargo-multivers/compare/v0.8.1...HEAD + +## [0.8.1] + ### Changed - Update dependencies. -[Unreleased]: https://github.com/ronnychevalier/cargo-multivers/compare/v0.8.0...HEAD +### Fixed + +- Build of `multivers-runner` with recent nightly + +[0.8.1]: https://github.com/ronnychevalier/cargo-multivers/compare/v0.8.0...v0.8.1 ## [0.8.0] - 27-12-2023 diff --git a/Cargo.lock b/Cargo.lock index 925c3b4..153d618 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -150,7 +150,7 @@ dependencies = [ [[package]] name = "cargo-multivers" -version = "0.8.0" +version = "0.8.1" dependencies = [ "anyhow", "assert_cmd", @@ -499,7 +499,7 @@ checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" [[package]] name = "multivers-runner" -version = "0.1.0" +version = "0.1.1" dependencies = [ "bzip2", "cfg-if", diff --git a/Cargo.toml b/Cargo.toml index 0e64669..4d969e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-multivers" -version = "0.8.0" +version = "0.8.1" 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" diff --git a/multivers-runner/Cargo.toml b/multivers-runner/Cargo.toml index 6001b11..586efc5 100644 --- a/multivers-runner/Cargo.toml +++ b/multivers-runner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multivers-runner" -version = "0.1.0" +version = "0.1.1" description = "Library to create a portable binary that embeds multiple versions of an executable each using a different CPU feature set" edition = "2021" readme = "README.md"