From f85795bc0cfb2b7601a799e600b49b45215493cf Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 26 Aug 2021 17:39:41 -0600 Subject: [PATCH] cpufeatures v0.2.1 --- Cargo.lock | 2 +- cpufeatures/CHANGELOG.md | 9 ++++++++- cpufeatures/Cargo.toml | 2 +- cpufeatures/src/lib.rs | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 628e3659..71b2079e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -102,7 +102,7 @@ dependencies = [ [[package]] name = "cpufeatures" -version = "0.2.0" +version = "0.2.1" dependencies = [ "libc", ] diff --git a/cpufeatures/CHANGELOG.md b/cpufeatures/CHANGELOG.md index ff9c0ea1..560943cb 100644 --- a/cpufeatures/CHANGELOG.md +++ b/cpufeatures/CHANGELOG.md @@ -5,7 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## 0.2.0 (2021-08-26) +## 0.2.1 (2021-08-26) +### Changed +- Revert [#583] "Use from_bytes_with_nul for string check" ([#597]) + +[#583]: https://github.com/RustCrypto/utils/pull/583 +[#597]: https://github.com/RustCrypto/utils/pull/597 + +## 0.2.0 (2021-08-26) [YANKED] ### Removed - AArch64 `crypto` target feature ([#594]) diff --git a/cpufeatures/Cargo.toml b/cpufeatures/Cargo.toml index b6a54d41..25223602 100644 --- a/cpufeatures/Cargo.toml +++ b/cpufeatures/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cpufeatures" -version = "0.2.0" # Also update html_root_url in lib.rs when bumping this +version = "0.2.1" # Also update html_root_url in lib.rs when bumping this description = """ Lightweight and efficient no-std compatible alternative to the is_x86_feature_detected! macro diff --git a/cpufeatures/src/lib.rs b/cpufeatures/src/lib.rs index a2b2ef93..96eb1a27 100644 --- a/cpufeatures/src/lib.rs +++ b/cpufeatures/src/lib.rs @@ -57,7 +57,7 @@ #![doc( html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg", - html_root_url = "https://docs.rs/cpufeatures/0.2.0" + html_root_url = "https://docs.rs/cpufeatures/0.2.1" )] #[cfg(all(target_arch = "aarch64"))]