Skip to content

Commit 268dc90

Browse files
committed
update MSRV to 1.52.0
- There is a compiler bug in 1.51.0 that blocks #260. This is fixed in 1.52.0
1 parent 69d3fe2 commit 268dc90

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ programming interfaces are only available on the high density connectors.
110110
Minimum supported Rust version
111111
------------------------------
112112

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

0 commit comments

Comments
 (0)