Skip to content

Commit 9894650

Browse files
committed
Bumps the MSRV to 1.65
1 parent b0cead1 commit 9894650

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.github/workflows/msrv.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4
1616
- uses: dtolnay/rust-toolchain@stable
1717
with:
18-
toolchain: 1.60.0
18+
toolchain: 1.65.0
1919
target: thumbv7em-none-eabihf
2020
- run: cargo check --features=stm32f303xc,usb,rt,can,ld --lib
2121

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1414

1515
## Unreleased
1616

17-
No changes.
17+
### Changed
18+
19+
- The MSRV was bumped to 1.65 ([#367])
1820

1921
## [v0.10.0] - 2023-11-30
2022

@@ -619,6 +621,7 @@ let clocks = rcc
619621
[defmt]: https://github.com/knurling-rs/defmt
620622
[filter]: https://defmt.ferrous-systems.com/filtering.html
621623

624+
[#367]: https://github.com/stm32-rs/stm32f3xx-hal/pull/367
622625
[#356]: https://github.com/stm32-rs/stm32f3xx-hal/pull/356
623626
[#352]: https://github.com/stm32-rs/stm32f3xx-hal/pull/352
624627
[#351]: https://github.com/stm32-rs/stm32f3xx-hal/pull/351

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ documentation = "https://docs.rs/stm32f3xx-hal"
1616
version = "0.10.0"
1717
exclude = ["codegen", ".markdownlint.yml"]
1818
resolver = "2"
19-
rust-version = "1.60"
19+
rust-version = "1.65"
2020

2121
[package.metadata.docs.rs]
2222
features = ["stm32f303xc", "rt", "usb", "can", "enumset"]

README.md

Lines changed: 4 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.60+-blue.svg)
7+
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.65+-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
@@ -37,7 +37,9 @@ Almost all of the implementation was shamelessly adapted from the
3737
[`stm32f30x-hal`][] crate by Jorge Aparicio.
3838

3939
[`stm32f3`]: https://crates.io/crates/stm32f3
40+
4041
[`stm32f30x-hal`]: https://github.com/japaric/stm32f30x-hal
42+
4143
[`embedded-hal`]: https://github.com/japaric/embedded-hal
4244

4345
## Getting Started
@@ -88,7 +90,7 @@ You can find a list [here, in the docs][chip-features].
8890
#### Note
8991

9092
1. This features are mutually exclusive. Only one feature / chip variant can be
91-
chosen.
93+
chosen.
9294
2. You **have** to choose exactly **one** feature to build this crate at all.
9395

9496
[chip-features]: https://docs.rs/stm32f3xx-hal/latest/stm32f3xx_hal/#target-chip-selection

0 commit comments

Comments
 (0)