Skip to content

Commit 26f4316

Browse files
committed
Upgrade MSRV to 1.59
1 parent 4bbf94c commit 26f4316

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

.clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
msrv = "1.54"
1+
msrv = "1.59"

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- uses: actions/checkout@v2
5858
- uses: actions-rs/toolchain@v1
5959
with:
60-
toolchain: 1.54.0
60+
toolchain: 1.59.0
6161
target: thumbv7em-none-eabihf
6262
override: true
6363
profile: minimal

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ No changes.
2424

2525
- Fix wrong timer frequency calculation and unexpected panics ([#338])
2626

27+
### Changed
28+
29+
- The MSRV was bumped to 1.59 ([#227])
30+
2731
## [v0.9.1] - 2022-09-07
2832

2933
### Added

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
edition = "2018"
2+
edition = "2021"
33
authors = [
44
"Dylan Frankland <[email protected]>",
55
"Sh3Rm4n <[email protected]>",
@@ -19,7 +19,7 @@ exclude = [
1919
".markdownlint.yml"
2020
]
2121
resolver = "2"
22-
rust-version = "1.54"
22+
rust-version = "1.59"
2323

2424
[workspace]
2525
members = [

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Crate](https://img.shields.io/crates/v/stm32f3xx-hal.svg)](https://crates.io/crates/stm32f3xx-hal)
55
[![Docs](https://docs.rs/stm32f3xx-hal/badge.svg)](https://docs.rs/stm32f3xx-hal)
66
[![Crates.io](https://img.shields.io/crates/d/stm32f3xx-hal.svg)](https://crates.io/crates/stm32f3xx-hal)
7-
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.54+-blue.svg)
7+
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.59+-blue.svg)
88

99
`stm32f3xx-hal` contains a multi device hardware abstraction on top of the
1010
peripheral access API for the STMicro STM32F3 series microcontrollers. The
@@ -139,7 +139,7 @@ See the [examples folder](examples) for more example programs.
139139

140140
## Minimum Supported Rust Version (MSRV)
141141

142-
This crate is guaranteed to compile on stable Rust 1.54.0 and up. It *might*
142+
This crate is guaranteed to compile on stable Rust 1.59.0 and up. It *might*
143143
compile with older versions but that may change in any new patch release.
144144

145145
<!-- This should not prevent anyone to use newer features. -->

testsuite/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
edition = "2018"
2+
edition = "2021"
33
name = "testsuite"
44
publish = false
55
version = "0.0.0"

0 commit comments

Comments
 (0)