Skip to content

Commit f427968

Browse files
committed
update MSRV to 1.62
the new `defmt` patch release requires at least Rust 1.62. when not using this feature it should be possible to still use an older Rust version, but this is untested.
1 parent 0aa6578 commit f427968

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
rust: [1.60.0, stable]
13+
rust: [1.62.0, stable]
1414
features: ['', '--all-features']
1515
runs-on: ubuntu-latest
1616
steps:

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
9+
### Changed
10+
* Due to dependency updates the MSRV has been updated from 1.60 to 1.62. This should only be relevant if you use the `defmt` feature, but we now only test with 1.62 and not older releases, so it's not guaranteed to work otherwise.
911

1012
## [0.1.1] - 2023-01-07
1113
### Changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "adafruit-bluefruit-protocol"
33
version = "0.1.1"
44
edition = "2021"
5-
rust-version = "1.60"
5+
rust-version = "1.62"
66

77
description = "A `no_std` parser for the Adafruit Bluefruit LE Connect controller protocol."
88
repository = "https://github.com/rursprung/adafruit-bluefruit-protocol-rs"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ A simple example for the STM32F4 microcontrollers is [available](examples/stm32f
2424
For the changelog please see the dedicated [CHANGELOG.md](CHANGELOG.md).
2525

2626
## Minimum Supported Rust Version (MSRV)
27-
This crate is guaranteed to compile on stable Rust 1.60 and up. It *might*
27+
This crate is guaranteed to compile on stable Rust 1.62 and up. It *might*
2828
compile with older versions but that may change in any new patch release.

0 commit comments

Comments
 (0)