Skip to content

Commit cc7b347

Browse files
committed
Bump MSRV to 1.52
So that the serial_echo_rtic example compiles.
1 parent 76c0115 commit cc7b347

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.clippy.toml

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

.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.51.0
60+
toolchain: 1.52.0
6161
target: thumbv7em-none-eabihf
6262
override: true
6363
profile: minimal

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3030
not needed. ([#283])
3131
- Enable `rt`, `usb`, `can`, `rtc` and `ld` feature by default.
3232
To disable that behavior, set `default-features = false`. ([#283])
33+
- The MSRV was bumped to 1.52 ([#283])
3334

3435
## [v0.8.0] - 2021-08-16
3536

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.51+-blue.svg)
7+
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.52+-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.51.0 and up. It *might*
142+
This crate is guaranteed to compile on stable Rust 1.52.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)