Skip to content

Commit e70943c

Browse files
authored
cpufeatures: release v0.2.10 (#962)
1 parent 68cc2d8 commit e70943c

File tree

4 files changed

+32
-14
lines changed

4 files changed

+32
-14
lines changed

.github/workflows/cpufeatures.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,3 +122,15 @@ jobs:
122122
# Isolate this crate from workspace which is otherwise MSRV 1.56 due to 2021 edition crates
123123
- run: rm ../Cargo.toml
124124
- run: cross test --target ${{ matrix.target }}
125+
126+
# Build-only tests
127+
build-only:
128+
runs-on: ubuntu-latest
129+
steps:
130+
- uses: actions/checkout@v4
131+
- uses: RustCrypto/actions/cargo-cache@master
132+
- uses: dtolnay/rust-toolchain@master
133+
with:
134+
toolchain: stable
135+
- run: rustup target add loongarch64-unknown-linux-gnu
136+
- run: cargo build --target loongarch64-unknown-linux-gnu

Cargo.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cpufeatures/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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.10 (2023-10-20)
9+
### Added
10+
- LoongArch64 target support ([#955])
11+
12+
[#955]: https://github.com/RustCrypto/utils/pull/955
13+
814
## 0.2.9 (2023-07-05)
915
### Added
1016
- Support for `avx512vbmi` and `avx512vbmi2` target features ([#926])

cpufeatures/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cpufeatures"
3-
version = "0.2.9"
3+
version = "0.2.10"
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

0 commit comments

Comments
 (0)