Skip to content

Commit 15ccac8

Browse files
authored
Merge pull request #48 from jannic-dev-forks/msrv-1.84.0
Set MSRV to 1.84 and set resolver = 3
2 parents a956404 + e07c658 commit 15ccac8

6 files changed

Lines changed: 10 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
matrix:
1818
rust:
1919
- stable
20-
- 1.62.0 # MSRV
20+
- 1.84.0 # MSRV
2121

2222
features:
2323
- ''

.github/workflows/clippy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
- uses: actions/checkout@v3
1818
- uses: dtolnay/rust-toolchain@master
1919
with:
20-
toolchain: 1.71.0
20+
toolchain: 1.84.0
2121
components: clippy
2222
- run: cargo clippy --all-targets --all-features

.github/workflows/rustfmt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
- uses: actions/checkout@v3
1616
- uses: dtolnay/rust-toolchain@master
1717
with:
18-
toolchain: 1.71.0
18+
toolchain: 1.84.0
1919
components: rustfmt
2020
- run: cargo fmt --all -- --check

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
88
## [Unreleased]
99

1010
### Changed
11-
- Raised MSRV to 1.62.0
11+
- Raised MSRV to 1.84.0
12+
- Set `resolver = "3"`, which implies `resolver.incompatible-rust-versions = "fallback"`
1213

1314
## [v1.1.0] - 2023-03-07
1415

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@ documentation = "https://docs.rs/nb"
1111
readme = "README.md"
1212
version = "1.1.0"
1313
edition = "2018"
14-
rust-version = "1.62"
14+
rust-version = "1.84"
15+
resolver = "3"
1516

1617
[features]
1718
"defmt-0-3" = ["dep:defmt"]
1819

1920
[dependencies]
20-
defmt = {version = "0.3", optional = true}
21+
defmt = {version = "0.3", optional = true}

README.md

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

66
# `nb`
77

@@ -40,7 +40,7 @@ non-blocking models:
4040

4141
## Minimum Supported Rust Version (MSRV)
4242

43-
This crate is guaranteed to compile on stable Rust 1.62 and up. It *might*
43+
This crate is guaranteed to compile on stable Rust 1.64 and up. It *might*
4444
compile with older versions but that may change in any new patch release.
4545

4646
## License

0 commit comments

Comments
 (0)