Skip to content

Commit c48c6fc

Browse files
committed
cpufeatures v0.1.2
1 parent 695c899 commit c48c6fc

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cpufeatures/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ 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.1.2 (2021-05-13)
9+
### Added
10+
- `neon` feature detection on `aarch64` targets ([#403])
11+
12+
### Fixed
13+
- Support for `musl`-based targets ([#403])
14+
15+
[#403]: https://github.com/RustCrypto/utils/pull/403
16+
817
## 0.1.1 (2021-05-06)
918
### Added
1019
- `aarch64` support for Linux and macOS/M4 targets ([#393])

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.1" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.1.2" # 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.1"
60+
html_root_url = "https://docs.rs/cpufeatures/0.1.2"
6161
)]
6262

6363
#[cfg(all(target_arch = "aarch64", any(target_os = "linux", target_os = "macos")))]

0 commit comments

Comments
 (0)