Skip to content

Commit f057729

Browse files
authored
cpufeatures v0.1.5 (#502)
1 parent d92f3da commit f057729

File tree

5 files changed

+20
-8
lines changed

5 files changed

+20
-8
lines changed

Cargo.lock

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

cpufeatures/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ 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.5 (2021-06-21)
9+
### Added
10+
- iOS support ([#435], [#501])
11+
12+
### Changed
13+
- Map `aarch64` HWCAPs to target features; add `crypto` ([#456])
14+
15+
[#435]: https://github.com/RustCrypto/utils/pull/435
16+
[#456]: https://github.com/RustCrypto/utils/pull/456
17+
[#501]: https://github.com/RustCrypto/utils/pull/501
18+
819
## 0.1.4 (2021-05-14)
920
### Added
1021
- Support compiling on non-Linux/macOS aarch64 targets ([#408])

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.4" # Also update html_root_url in lib.rs when bumping this
3+
version = "0.1.5" # 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/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# RustCrypto: CPU Feature Detection
1+
# [RustCrypto]: CPU Feature Detection
22

33
[![crate][crate-image]][crate-link]
44
[![Docs][docs-image]][docs-link]
@@ -82,4 +82,5 @@ dual licensed as above, without any additional terms or conditions.
8282

8383
[//]: # (general links)
8484

85+
[RustCrypto]: https://github.com/rustcrypto
8586
[RustCrypto/utils#378]: https://github.com/RustCrypto/utils/issues/378

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

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

0 commit comments

Comments
 (0)