Skip to content

Commit 5aa5f3b

Browse files
committed
Bump MSRV to 1.80.0
1 parent 5a45630 commit 5aa5f3b

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
matrix: # All permutations of {rust, mcu}
2323
rust:
24-
- 1.66.1 # MSRV
24+
- 1.80.0 # MSRV
2525
- stable
2626
mcu:
2727
- stm32h743

.github/workflows/clippy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: dtolnay/rust-toolchain@master
1414
with:
15-
toolchain: 1.74.0
15+
toolchain: 1.80.0
1616
target: thumbv7em-none-eabihf
1717
components: clippy
1818
- uses: clechasseur/rs-clippy-check@v3

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## [Unreleased]
44

5+
* MSRV increased to Rust 1.80.0
6+
* **Breaking** Update `smoltcp` to `0.12.0` (from `0.11.0`)
7+
58
## [v0.16.0] 2024-03-12
69

710
* MSRV increased to Rust 1.66.1 [#473]

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ authors = ["Andrew Straw <strawman@astraw.com>",
1111
"Florian Jung <flo@windfisch.org>",
1212
"Matt Ickstadt <mattico8@gmail.com>"]
1313
edition = "2021"
14-
rust-version = "1.66.1"
14+
rust-version = "1.80.0"
1515
categories = ["embedded", "hardware-support", "no-std"]
1616
description = "Hardware Abstraction Layer implementation for STM32H7 series microcontrollers"
1717
keywords = ["arm", "cortex-m", "stm32h7xx", "hal", "embedded-hal"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ stm32h7xx-hal
66
[![docs.rs](https://docs.rs/stm32h7xx-hal/badge.svg)](https://docs.rs/stm32h7xx-hal)
77
[![CI](https://github.com/stm32-rs/stm32h7xx-hal/workflows/Continuous%20integration/badge.svg)](https://github.com/stm32-rs/stm32h7xx-hal/actions)
88
[![Crates.io](https://img.shields.io/crates/v/stm32h7xx-hal.svg)](https://crates.io/crates/stm32h7xx-hal)
9-
![Minimum rustc version](https://img.shields.io/badge/rustc-1.66.1+-yellow.svg)
9+
0[Minimum rustc version](https://img.shields.io/badge/rustc-1.80.0+-yellow.svg)
1010

1111
[_stm32h7xx-hal_](https://github.com/stm32-rs/stm32h7xx-hal) contains
1212
a hardware abstraction layer on top of the peripheral access API for
@@ -113,7 +113,7 @@ programming interfaces are only available on the high density connectors.
113113
Minimum supported Rust version
114114
------------------------------
115115

116-
The Minimum Supported Rust Version (MSRV) at the moment is **1.66.1**. Older
116+
The Minimum Supported Rust Version (MSRV) at the moment is **1.80.0**. Older
117117
versions **may** compile, especially when some features are not used in your
118118
application.
119119

0 commit comments

Comments
 (0)