Skip to content

Commit e0329f5

Browse files
committed
Bump MSRV to 1.65
1 parent 4300e7c commit e0329f5

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
# Failure is permitted on nightly.
2222
rust:
2323
- stable
24-
- 1.61.0
24+
- 1.65.0
2525
- nightly
2626

2727
features:
@@ -65,7 +65,7 @@ jobs:
6565
# Failure is permitted on nightly.
6666
rust:
6767
- stable
68-
- 1.61.0
68+
- 1.65.0
6969
- nightly
7070

7171
features:

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
- Remove IpAddress::Unspecified
1212
- When sending packets with a raw socket, the source IP address is sent unmodified (it was previously replaced with the interface's address if it was unspecified).
1313
- Fix enable `defmt/alloc` if `alloc` or `std` is enabled.
14-
- Minimum Supported Rust Version (MSRV) **bumped** from 1.56 to 1.60
14+
- Minimum Supported Rust Version (MSRV) **bumped** from 1.56 to 1.65
1515

1616
## [0.8.1] - 2022-05-12
1717

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "smoltcp"
33
version = "0.8.1"
44
edition = "2018"
5-
rust-version = "1.61"
5+
rust-version = "1.65"
66
authors = ["whitequark <[email protected]>"]
77
description = "A TCP/IP stack designed for bare-metal, real-time systems without a heap."
88
documentation = "https://docs.rs/smoltcp/"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ include complicated compile-time computations, such as macro or type tricks, eve
1111
at cost of performance degradation.
1212

1313
_smoltcp_ does not need heap allocation *at all*, is [extensively documented][docs],
14-
and compiles on stable Rust 1.61 and later.
14+
and compiles on stable Rust 1.65 and later.
1515

1616
_smoltcp_ achieves [~Gbps of throughput](#examplesbenchmarkrs) when tested against
1717
the Linux TCP stack in loopback mode.

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
//!
6666
//! # Minimum Supported Rust Version (MSRV)
6767
//!
68-
//! This crate is guaranteed to compile on stable Rust 1.61 and up with any valid set of features.
68+
//! This crate is guaranteed to compile on stable Rust 1.65 and up with any valid set of features.
6969
//! It *might* compile on older versions but that may change in any new patch release.
7070
//!
7171
//! The exception is when using the `defmt` feature, in which case `defmt`'s MSRV applies, which

0 commit comments

Comments
 (0)