Skip to content

Commit 01e949b

Browse files
committed
bump MSRV to 1.70 for f16c intrinsics
1 parent b51e70a commit 01e949b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ workflows:
5050
toolchain: stable
5151
features: --all-features
5252
- rust:
53-
name: Rust AArch64 (1.61.0)
54-
toolchain: 1.61.0
53+
name: Rust AArch64 (1.70.0)
54+
toolchain: 1.70.0
5555
features: --all-features
5656
- rust:
5757
name: Rust AArch64 (nightly)

.github/workflows/rust.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- stable
3131
- beta
3232
- nightly
33-
- 1.61.0
33+
- 1.70.0
3434

3535
steps:
3636
- name: Checkout

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1111
- Floating point formatting options in `Display` and `Debug` implementations. By [@eiz].
1212

1313
### Changed
14-
- **Breaking Change** Minimum supported Rust version is now 1.61.
14+
- **Breaking Change** Minimum supported Rust version is now 1.70.
1515
- **Breaking Change** Minimum supported Rust version policy reverted to original policy of allowing
1616
minimum supported Rust version updates for minor releases instead of only major to avoid
1717
segmentation and allow optimizing hardware implementations without unnecessary major releases.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = ["f16", "bfloat16", "no_std"]
1010
license = "MIT OR Apache-2.0"
1111
categories = ["no-std", "data-structures", "encoding"]
1212
edition = "2021"
13-
rust-version = "1.61"
13+
rust-version = "1.70"
1414
exclude = [".git*", ".editorconfig"]
1515

1616
[features]

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ be required for some hardware.
1515

1616
This crate provides [`no_std`](https://rust-embedded.github.io/book/intro/no-std.html) support so can easily be used in embedded code where a smaller float format is most useful.
1717

18-
*Requires Rust 1.61 or greater.* If you need support for older versions of Rust, use 1.x versions of
18+
*Requires Rust 1.70 or greater.* If you need support for older versions of Rust, use 1.x versions of
1919
this crate.
2020

2121
See the [crate documentation](https://docs.rs/half/) for more details.

0 commit comments

Comments
 (0)