From b3e369199f4c7a90346f7c294869109b1b6e8179 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Wed, 4 Feb 2026 13:28:57 -0700 Subject: [PATCH] cpufeatures v0.3.0 --- Cargo.lock | 2 +- cpufeatures/CHANGELOG.md | 8 +++++++- cpufeatures/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5a65862d..a637a2fd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -72,7 +72,7 @@ version = "0.1.0" [[package]] name = "cpufeatures" -version = "0.3.0-pre" +version = "0.3.0" dependencies = [ "libc", ] diff --git a/cpufeatures/CHANGELOG.md b/cpufeatures/CHANGELOG.md index cf8741e6..e3b0f2b2 100644 --- a/cpufeatures/CHANGELOG.md +++ b/cpufeatures/CHANGELOG.md @@ -5,11 +5,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## 0.3.0 (unreleased) +## 0.3.0 (2026-02-04) +### Added +- `x86` support for: `sha512`, `sm3`, `sm4` ([#1181]) +- `InitToken::{init, init_get}` ([#1435]) + ### Changed - Edition changed to 2024 and MSRV bumped to 1.85 ([#1149]) [#1149]: https://github.com/RustCrypto/utils/pull/1149 +[#1181]: https://github.com/RustCrypto/utils/pull/1181 +[#1435]: https://github.com/RustCrypto/utils/pull/1435 ## 0.2.17 (2025-01-24) ### Fixed diff --git a/cpufeatures/Cargo.toml b/cpufeatures/Cargo.toml index 0622d7a6..7cb8c8e2 100644 --- a/cpufeatures/Cargo.toml +++ b/cpufeatures/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cpufeatures" -version = "0.3.0-pre" +version = "0.3.0" authors = ["RustCrypto Developers"] edition = "2024" rust-version = "1.85"