Skip to content

Commit 01ccaa2

Browse files
authored
cpufeatures v0.2.0 (#595)
1 parent d5065ad commit 01ccaa2

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cpufeatures/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.2.0 (2021-08-26)
9+
### Removed
10+
- AArch64 `crypto` target feature ([#594])
11+
12+
[#594]: https://github.com/RustCrypto/utils/pull/594
13+
814
## 0.1.5 (2021-06-21)
915
### Added
1016
- iOS support ([#435], [#501])

cpufeatures/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cpufeatures"
3-
version = "0.1.5" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.2.0" # Also update html_root_url in lib.rs when bumping this
44
description = """
55
Lightweight and efficient no-std compatible alternative to the
66
is_x86_feature_detected! macro

cpufeatures/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
#![doc(
5858
html_logo_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
5959
html_favicon_url = "https://raw.githubusercontent.com/RustCrypto/meta/master/logo.svg",
60-
html_root_url = "https://docs.rs/cpufeatures/0.1.5"
60+
html_root_url = "https://docs.rs/cpufeatures/0.2.0"
6161
)]
6262

6363
#[cfg(all(target_arch = "aarch64"))]

0 commit comments

Comments
 (0)