Skip to content

Commit 9d92d5e

Browse files
authored
cpufeatures: release v0.2.17 (#1143)
1 parent 41a653a commit 9d92d5e

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

Cargo.lock

+1-1
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,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.17 (2025-01-24)
9+
### Fixed
10+
- Don't link `std` when linking `libc` ([#1142])
11+
12+
[#1142]: https://github.com/RustCrypto/utils/pull/1142
13+
814
## 0.2.16 (2024-11-22)
915
### Fixed
1016
- `cfg` for freestanding x86 targets ([#1137])

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.2.16"
3+
version = "0.2.17"
44
description = """
55
Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets,
66
with no_std support and support for mobile targets including Android and iOS

cpufeatures/LICENSE-MIT

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2020 The RustCrypto Project Developers
1+
Copyright (c) 2020-2025 The RustCrypto Project Developers
22

33
Permission is hereby granted, free of charge, to any
44
person obtaining a copy of this software and associated

cpufeatures/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
[![crate][crate-image]][crate-link]
44
[![Docs][docs-image]][docs-link]
5+
[![Build Status][build-image]][build-link]
56
![Apache2/MIT licensed][license-image]
67
![Rust Version][rustc-image]
78
[![Project Chat][chat-image]][chat-link]
8-
[![Build Status][build-image]][build-link]
99

1010
Lightweight and efficient runtime CPU feature detection for `aarch64`, `loongarch64`, and
1111
`x86`/`x86_64` targets.
@@ -108,15 +108,15 @@ dual licensed as above, without any additional terms or conditions.
108108

109109
[//]: # (badges)
110110

111-
[crate-image]: https://img.shields.io/crates/v/cpufeatures.svg
111+
[crate-image]: https://img.shields.io/crates/v/cpufeatures.svg?logo=rust
112112
[crate-link]: https://crates.io/crates/cpufeatures
113113
[docs-image]: https://docs.rs/cpufeatures/badge.svg
114114
[docs-link]: https://docs.rs/cpufeatures/
115115
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
116116
[rustc-image]: https://img.shields.io/badge/rustc-1.40+-blue.svg
117117
[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg
118118
[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/260052-utils
119-
[build-image]: https://github.com/RustCrypto/utils/workflows/cpufeatures/badge.svg?branch=master&event=push
119+
[build-image]: https://github.com/RustCrypto/utils/actions/workflows/cpufeatures.yml/badge.svg
120120
[build-link]: https://github.com/RustCrypto/utils/actions/workflows/cpufeatures.yml
121121

122122
[//]: # (general links)

0 commit comments

Comments
 (0)