File tree Expand file tree Collapse file tree 6 files changed +163
-162
lines changed Expand file tree Collapse file tree 6 files changed +163
-162
lines changed Original file line number Diff line number Diff line change 1
- msrv = " 1.52 "
1
+ msrv = " 1.54 "
Original file line number Diff line number Diff line change 57
57
- uses : actions/checkout@v2
58
58
- uses : actions-rs/toolchain@v1
59
59
with :
60
- toolchain : 1.52 .0
60
+ toolchain : 1.54 .0
61
61
target : thumbv7em-none-eabihf
62
62
override : true
63
63
profile : minimal
Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
16
16
17
17
### Added
18
18
19
+ - The MSRV was bumped to 1.54 ([ #308 ] )
20
+ - Generic ` into_af_push_pull<A> ` and ` into_af_open_drain<A> ` ([ #308 ] )
19
21
- ` BusClock ` and ` BusTimerClock ` traits ([ #302 ] )
20
22
- ` RccBus ` , ` Enable ` , ` Reset ` traits and implementations for peripherals ([ #299 ] )
21
23
- Support cortex-m-rt ` v0.7.0 ` but still allow ` v0.6.13 ` ([ #283 ] )
@@ -508,6 +510,7 @@ let clocks = rcc
508
510
[ defmt ] : https://github.com/knurling-rs/defmt
509
511
[ filter ] : https://defmt.ferrous-systems.com/filtering.html
510
512
513
+ [ #308 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/308
511
514
[ #304 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/304
512
515
[ #302 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/302
513
516
[ #299 ] : https://github.com/stm32-rs/stm32f3xx-hal/pull/299
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ exclude = [
19
19
" .markdownlint.yml"
20
20
]
21
21
resolver = " 2"
22
- rust-version = " 1.52 "
22
+ rust-version = " 1.54 "
23
23
24
24
[workspace ]
25
25
members = [
Original file line number Diff line number Diff line change 4
4
[ ![ Crate] ( https://img.shields.io/crates/v/stm32f3xx-hal.svg )] ( https://crates.io/crates/stm32f3xx-hal )
5
5
[ ![ Docs] ( https://docs.rs/stm32f3xx-hal/badge.svg )] ( https://docs.rs/stm32f3xx-hal )
6
6
[ ![ 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.54 +-blue.svg )
8
8
9
9
` stm32f3xx-hal ` contains a multi device hardware abstraction on top of the
10
10
peripheral access API for the STMicro STM32F3 series microcontrollers. The
@@ -139,7 +139,7 @@ See the [examples folder](examples) for more example programs.
139
139
140
140
## Minimum Supported Rust Version (MSRV)
141
141
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.54 .0 and up. It * might*
143
143
compile with older versions but that may change in any new patch release.
144
144
145
145
<!-- This should not prevent anyone to use newer features. -->
You can’t perform that action at this time.
0 commit comments