Skip to content

Commit a6e0d97

Browse files
authored
cpufeatures v0.1.1 (#400)
1 parent fd95867 commit a6e0d97

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cpufeatures/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,11 @@ 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.1 (2021-05-06)
9+
### Added
10+
- `aarch64` support for Linux and macOS/M4 targets ([#393])
11+
12+
[#393]: https://github.com/RustCrypto/utils/pull/393
13+
814
## 0.1.0 (2021-04-29)
915
- Initial release

cpufeatures/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cpufeatures"
3-
version = "0.1.0" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.1.1" # 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

+1-1
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.0"
60+
html_root_url = "https://docs.rs/cpufeatures/0.1.1"
6161
)]
6262

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

0 commit comments

Comments
 (0)