Skip to content

Commit

Permalink
bump MSRV to 1.70 for f16c intrinsics
Browse files Browse the repository at this point in the history
  • Loading branch information
starkat99 committed Jun 24, 2023
1 parent b51e70a commit 01e949b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Expand Up @@ -50,8 +50,8 @@ workflows:
toolchain: stable
features: --all-features
- rust:
name: Rust AArch64 (1.61.0)
toolchain: 1.61.0
name: Rust AArch64 (1.70.0)
toolchain: 1.70.0
features: --all-features
- rust:
name: Rust AArch64 (nightly)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Expand Up @@ -30,7 +30,7 @@ jobs:
- stable
- beta
- nightly
- 1.61.0
- 1.70.0

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Floating point formatting options in `Display` and `Debug` implementations. By [@eiz].

### Changed
- **Breaking Change** Minimum supported Rust version is now 1.61.
- **Breaking Change** Minimum supported Rust version is now 1.70.
- **Breaking Change** Minimum supported Rust version policy reverted to original policy of allowing
minimum supported Rust version updates for minor releases instead of only major to avoid
segmentation and allow optimizing hardware implementations without unnecessary major releases.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -10,7 +10,7 @@ keywords = ["f16", "bfloat16", "no_std"]
license = "MIT OR Apache-2.0"
categories = ["no-std", "data-structures", "encoding"]
edition = "2021"
rust-version = "1.61"
rust-version = "1.70"
exclude = [".git*", ".editorconfig"]

[features]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -15,7 +15,7 @@ be required for some hardware.

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.

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

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

0 comments on commit 01e949b

Please sign in to comment.