Skip to content

Commit 2785557

Browse files
committed
Bump MSRV to 1.59
1 parent e511359 commit 2785557

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
msrv = "1.52"
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.52.0
60+
toolchain: 1.59.0
6161
target: thumbv7em-none-eabihf
6262
override: true
6363
profile: minimal

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3333
not needed. ([#283])
3434
- Enable `rt`, `usb`, `can`, `rtc` and `ld` feature by default.
3535
To disable that behavior, set `default-features = false`. ([#283])
36-
- The MSRV was bumped to 1.52 ([#283])
3736
- Update `stm32f3` pac to v0.14.0 ([#282])
3837
- Remove the `bxcan` re-export. ([#304])
38+
- The MSRV was bumped to 1.59 ([#213])
3939

4040
## [v0.8.2] - 2021-12-14
4141

@@ -543,6 +543,7 @@ let clocks = rcc
543543
[#220]: https://github.com/stm32-rs/stm32f3xx-hal/pull/220
544544
[#217]: https://github.com/stm32-rs/stm32f3xx-hal/pull/217
545545
[#216]: https://github.com/stm32-rs/stm32f3xx-hal/pull/216
546+
[#213]: https://github.com/stm32-rs/stm32f3xx-hal/pull/213
546547
[#212]: https://github.com/stm32-rs/stm32f3xx-hal/pull/212
547548
[#210]: https://github.com/stm32-rs/stm32f3xx-hal/pull/210
548549
[#208]: https://github.com/stm32-rs/stm32f3xx-hal/pull/208

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ exclude = [
1919
".markdownlint.yml"
2020
]
2121
resolver = "2"
22-
rust-version = "1.52"
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.52+-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.52.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. -->

0 commit comments

Comments
 (0)