Skip to content

Commit 83d09b1

Browse files
Merge #273
273: update MSRV to 1.52.0 r=richardeoin a=andrewgazelka - There is a compiler bug in 1.51.0 that blocks #260. This is fixed in 1.52.0 Co-authored-by: Andrew Gazelka <andrew.gazelka@gmail.com>
2 parents 69d3fe2 + 985d2c9 commit 83d09b1

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

.github/bors.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ block_labels = ["wip"]
22
delete_merged_branches = true
33
status = [
44
"Rustfmt",
5-
"ci (1.51.0, stm32h743)",
6-
"ci (1.51.0, stm32h753)",
7-
"ci (1.51.0, stm32h743v)",
8-
"ci (1.51.0, stm32h753v)",
9-
"ci (1.51.0, stm32h747cm7)",
10-
"ci (1.51.0, stm32h7b3)",
11-
"ci (1.51.0, stm32h7b0)",
12-
"ci (1.51.0, stm32h735)",
5+
"ci (1.52.0, stm32h743)",
6+
"ci (1.52.0, stm32h753)",
7+
"ci (1.52.0, stm32h743v)",
8+
"ci (1.52.0, stm32h753v)",
9+
"ci (1.52.0, stm32h747cm7)",
10+
"ci (1.52.0, stm32h7b3)",
11+
"ci (1.52.0, stm32h7b0)",
12+
"ci (1.52.0, stm32h735)",
1313
"ci (stable, stm32h743)",
1414
"ci (stable, stm32h753)",
1515
"ci (stable, stm32h743v)",

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix: # All permutations of {rust, mcu}
1313
rust:
14-
- 1.51.0 # MSRV
14+
- 1.52.0 # MSRV
1515
- stable
1616
mcu:
1717
- stm32h743

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Implemented additional conversion utilities for `time`
77
* **Breaking**: Changed I2S constructors to take less arguments
88

9-
* MSRV increased to 1.51.0
9+
* MSRV increased to 1.52.0
1010
* **Breaking**: Simplified API for reading device signature
1111
values. `VAL::get().read()` becomes `VAL::read()`
1212
* adc: Allow parallel execution of multiple ADCs through `start_conversion()`

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ stm32h7xx-hal
77
[![Bors enabled](https://bors.tech/images/badge_small.svg)](https://app.bors.tech/repositories/12691)
88
[![CI](https://github.com/stm32-rs/stm32h7xx-hal/workflows/Continuous%20integration/badge.svg)](https://github.com/stm32-rs/stm32h7xx-hal/actions)
99
[![Crates.io](https://img.shields.io/crates/v/stm32h7xx-hal.svg)](https://crates.io/crates/stm32h7xx-hal)
10+
![Minimum rustc version](https://img.shields.io/badge/rustc-1.52.0+-yellow.svg)
1011

1112
[_stm32h7xx-hal_](https://github.com/stm32-rs/stm32h7xx-hal) contains
1213
a hardware abstraction layer on top of the peripheral access API for
@@ -110,7 +111,7 @@ programming interfaces are only available on the high density connectors.
110111
Minimum supported Rust version
111112
------------------------------
112113

113-
The Minimum Supported Rust Version (MSRV) at the moment is **1.51.0**. Older
114+
The Minimum Supported Rust Version (MSRV) at the moment is **1.52.0**. Older
114115
versions **may** compile, especially when some features are not used
115116
in your application.
116117

0 commit comments

Comments
 (0)