From b1a613ba5a6da797ca8e63d1a8f41e793ba39b7b Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Thu, 26 Oct 2023 21:04:49 +0300 Subject: [PATCH] cpufeatures: release v0.2.11 (#973) --- Cargo.lock | 10 +++++----- cpufeatures/CHANGELOG.md | 6 ++++++ cpufeatures/Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cfa0eea4..4bb49ec2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -36,7 +36,7 @@ version = "0.0.2" [[package]] name = "cpufeatures" -version = "0.2.10" +version = "0.2.11" dependencies = [ "libc", ] @@ -150,18 +150,18 @@ checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" [[package]] name = "serde" -version = "1.0.189" +version = "1.0.190" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e422a44e74ad4001bdc8eede9a4570ab52f71190e9c076d14369f38b9200537" +checksum = "91d3c334ca1ee894a2c6f6ad698fe8c435b76d504b13d436f0685d648d6d96f7" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.189" +version = "1.0.190" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e48d1f918009ce3145511378cf68d613e3b3d9137d67272562080d68a2b32d5" +checksum = "67c5609f394e5c2bd7fc51efda478004ea80ef42fee983d5c67a65e34f32c0e3" dependencies = [ "proc-macro2", "quote", diff --git a/cpufeatures/CHANGELOG.md b/cpufeatures/CHANGELOG.md index faa33978..062155da 100644 --- a/cpufeatures/CHANGELOG.md +++ b/cpufeatures/CHANGELOG.md @@ -5,6 +5,12 @@ 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.2.11 (2023-10-26) +### Added +- Support for AArch64's `sm4` target feature ([#972]) + +[#972]: https://github.com/RustCrypto/utils/pull/972 + ## 0.2.10 (2023-10-20) ### Added - LoongArch64 target support ([#955]) diff --git a/cpufeatures/Cargo.toml b/cpufeatures/Cargo.toml index aba5773a..d76219b7 100644 --- a/cpufeatures/Cargo.toml +++ b/cpufeatures/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cpufeatures" -version = "0.2.10" +version = "0.2.11" description = """ Lightweight runtime CPU feature detection for aarch64, loongarch64, and x86/x86_64 targets, with no_std support and support for mobile targets including Android and iOS