diff --git a/CHANGELOG.md b/CHANGELOG.md index 4718f11..1df5289 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.4] - 2024-03-15 +### Fixed +- Fix `is_{arch}_feature_detected` path for non-x86. + ## [0.7.3] - 2023-08-10 ### Fixed - Don't include unstable target features in `targets = "simd"`. @@ -105,7 +109,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial multiversion implementation -[Unreleased]: https://github.com/calebzulawski/multiversion/compare/0.7.3...HEAD +[Unreleased]: https://github.com/calebzulawski/multiversion/compare/0.7.4...HEAD +[0.7.4]: https://github.com/calebzulawski/multiversion/compare/0.7.3...0.7.4 [0.7.3]: https://github.com/calebzulawski/multiversion/compare/0.7.2...0.7.3 [0.7.2]: https://github.com/calebzulawski/multiversion/compare/0.7.1...0.7.2 [0.7.1]: https://github.com/calebzulawski/multiversion/compare/0.7.0...0.7.1 diff --git a/multiversion-macros/Cargo.toml b/multiversion-macros/Cargo.toml index d4bb046..cd6ab23 100644 --- a/multiversion-macros/Cargo.toml +++ b/multiversion-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multiversion-macros" -version = "0.7.3" +version = "0.7.4" authors = ["Caleb Zulawski "] license = "MIT OR Apache-2.0" description = "Implementation crate for multiversion" diff --git a/multiversion/Cargo.toml b/multiversion/Cargo.toml index 690916b..6798797 100644 --- a/multiversion/Cargo.toml +++ b/multiversion/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multiversion" -version = "0.7.3" +version = "0.7.4" authors = ["Caleb Zulawski "] license = "MIT OR Apache-2.0" description = "Easy function multiversioning" @@ -23,7 +23,7 @@ default = ["std"] std = ["multiversion-macros/std"] [dependencies] -multiversion-macros = { version = "0.7.3", path = "../multiversion-macros", default-features = false } +multiversion-macros = { version = "0.7.4", path = "../multiversion-macros", default-features = false } target-features = "0.1" [dev-dependencies]