Skip to content

Commit 7d975f0

Browse files
committed
Bump MSRV to 1.60
Needed for namespaced features (`dep:` in Cargo.toml)
1 parent 8db8b0b commit 7d975f0

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
matrix:
1818
rust:
1919
- stable
20-
- 1.59.0 # MSRV
20+
- 1.60.0 # MSRV
2121
- nightly
2222
target:
2323
- x86_64-unknown-linux-gnu

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ on crates.io.
7272

7373
## Minimum Supported Rust Version (MSRV)
7474

75-
This crate is guaranteed to compile on stable Rust 1.59 and up. It *might*
75+
This crate is guaranteed to compile on stable Rust 1.60 and up. It *might*
7676
compile with older versions but that may change in any new patch release.
7777

7878
See [here](docs/msrv.md) for details on how the MSRV may be upgraded.

embedded-can/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![crates.io](https://img.shields.io/crates/d/embedded-can.svg)](https://crates.io/crates/embedded-can)
22
[![crates.io](https://img.shields.io/crates/v/embedded-can.svg)](https://crates.io/crates/embedded-can)
33
[![Documentation](https://docs.rs/embedded-can/badge.svg)](https://docs.rs/embedded-can)
4-
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.59+-blue.svg)
4+
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.60+-blue.svg)
55

66
# `embedded-can`
77

@@ -15,7 +15,7 @@ This project is developed and maintained by the [HAL team](https://github.com/ru
1515

1616
## Minimum Supported Rust Version (MSRV)
1717

18-
This crate is guaranteed to compile on stable Rust 1.59 and up. It *might*
18+
This crate is guaranteed to compile on stable Rust 1.60 and up. It *might*
1919
compile with older versions but that may change in any new patch release.
2020

2121
See [here](../docs/msrv.md) for details on how the MSRV may be upgraded.

embedded-hal-bus/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![crates.io](https://img.shields.io/crates/d/embedded-hal-bus.svg)](https://crates.io/crates/embedded-hal-bus)
22
[![crates.io](https://img.shields.io/crates/v/embedded-hal-bus.svg)](https://crates.io/crates/embedded-hal-bus)
33
[![Documentation](https://docs.rs/embedded-hal-bus/badge.svg)](https://docs.rs/embedded-hal-bus)
4-
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.59+-blue.svg)
4+
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.60+-blue.svg)
55

66
# `embedded-hal-bus`
77

@@ -34,7 +34,7 @@ provides mechanisms to obtain multiple `I2c` instances out of a single `I2c` ins
3434

3535
## Minimum Supported Rust Version (MSRV)
3636

37-
This crate is guaranteed to compile on stable Rust 1.59 and up. It *might*
37+
This crate is guaranteed to compile on stable Rust 1.60 and up. It *might*
3838
compile with older versions but that may change in any new patch release.
3939

4040
See [here](../docs/msrv.md) for details on how the MSRV may be upgraded.

embedded-hal-nb/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![crates.io](https://img.shields.io/crates/d/embedded-hal-nb.svg)](https://crates.io/crates/embedded-hal-nb)
22
[![crates.io](https://img.shields.io/crates/v/embedded-hal-nb.svg)](https://crates.io/crates/embedded-hal-nb)
33
[![Documentation](https://docs.rs/embedded-hal-nb/badge.svg)](https://docs.rs/embedded-hal-nb)
4-
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.59+-blue.svg)
4+
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.60+-blue.svg)
55

66
# `embedded-hal-nb`
77

@@ -17,7 +17,7 @@ This project is developed and maintained by the [HAL team](https://github.com/ru
1717

1818
## Minimum Supported Rust Version (MSRV)
1919

20-
This crate is guaranteed to compile on stable Rust 1.59 and up. It *might*
20+
This crate is guaranteed to compile on stable Rust 1.60 and up. It *might*
2121
compile with older versions but that may change in any new patch release.
2222

2323
See [here](../docs/msrv.md) for details on how the MSRV may be upgraded.

embedded-hal/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6565
*** This is (also) an alpha release with breaking changes (sorry) ***
6666

6767
### Changed
68-
- The Minimum Supported Rust Version (MSRV) is now 1.59.0
68+
- The Minimum Supported Rust Version (MSRV) is now 1.60.0
6969
- `spi`: unify all traits into `SpiReadBus`, `SpiWriteBus` and `SpiBus` (read-write).
7070
- `spi`: Add `SpiDevice` trait to represent a single device in a (possibly shared) bus, with managed chip-select (CS) pin.
7171
- `spi`: Clarify that implementations are allowed to return before operations are finished, add `flush` to wait until finished.

embedded-hal/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![crates.io](https://img.shields.io/crates/d/embedded-hal.svg)](https://crates.io/crates/embedded-hal)
22
[![crates.io](https://img.shields.io/crates/v/embedded-hal.svg)](https://crates.io/crates/embedded-hal)
33
[![Documentation](https://docs.rs/embedded-hal/badge.svg)](https://docs.rs/embedded-hal)
4-
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.59+-blue.svg)
4+
![Minimum Supported Rust Version](https://img.shields.io/badge/rustc-1.60+-blue.svg)
55

66
# `embedded-hal`
77

@@ -15,7 +15,7 @@ This project is developed and maintained by the [HAL team](https://github.com/ru
1515

1616
## Minimum Supported Rust Version (MSRV)
1717

18-
This crate is guaranteed to compile on stable Rust 1.59 and up. It *might*
18+
This crate is guaranteed to compile on stable Rust 1.60 and up. It *might*
1919
compile with older versions but that may change in any new patch release.
2020

2121
See [here](../docs/msrv.md) for details on how the MSRV may be upgraded.

embedded-io-adapters/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For `embedded-io-async`:
2929

3030
## Minimum Supported Rust Version (MSRV)
3131

32-
This crate is guaranteed to compile on stable Rust 1.59 and up. It *might*
32+
This crate is guaranteed to compile on stable Rust 1.60 and up. It *might*
3333
compile with older versions but that may change in any new patch release.
3434

3535
See [here](../docs/msrv.md) for details on how the MSRV may be upgraded.

embedded-io/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ stream, causing unexpected errors. To solve this, `embedded-io` specifies `Read`
2121

2222
## Minimum Supported Rust Version (MSRV)
2323

24-
This crate is guaranteed to compile on stable Rust 1.59 and up. It *might*
24+
This crate is guaranteed to compile on stable Rust 1.60 and up. It *might*
2525
compile with older versions but that may change in any new patch release.
2626

2727
See [here](../docs/msrv.md) for details on how the MSRV may be upgraded.

0 commit comments

Comments
 (0)