Skip to content

Commit e3f5d8e

Browse files
committed
doc: use local concat and stringify instead of global paste
1 parent 611cbd9 commit e3f5d8e

File tree

6 files changed

+163
-162
lines changed

6 files changed

+163
-162
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.54"

.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.54.0
6161
target: thumbv7em-none-eabihf
6262
override: true
6363
profile: minimal

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1616

1717
### Added
1818

19+
- The MSRV was bumped to 1.54 ([#308])
20+
- Generic `into_af_push_pull<A>` and `into_af_open_drain<A>` ([#308])
1921
- `BusClock` and `BusTimerClock` traits ([#302])
2022
- `RccBus`, `Enable`, `Reset` traits and implementations for peripherals ([#299])
2123
- Support cortex-m-rt `v0.7.0` but still allow `v0.6.13` ([#283])
@@ -508,6 +510,7 @@ let clocks = rcc
508510
[defmt]: https://github.com/knurling-rs/defmt
509511
[filter]: https://defmt.ferrous-systems.com/filtering.html
510512

513+
[#308]: https://github.com/stm32-rs/stm32f3xx-hal/pull/308
511514
[#304]: https://github.com/stm32-rs/stm32f3xx-hal/pull/304
512515
[#302]: https://github.com/stm32-rs/stm32f3xx-hal/pull/302
513516
[#299]: https://github.com/stm32-rs/stm32f3xx-hal/pull/299

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.54"
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.54+-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.54.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)