Skip to content

Commit

Permalink
Bump MSRV to 1.65
Browse files Browse the repository at this point in the history
  • Loading branch information
Dirbaio committed Nov 6, 2022
1 parent 4300e7c commit e0329f5
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# Failure is permitted on nightly.
rust:
- stable
- 1.61.0
- 1.65.0
- nightly

features:
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
# Failure is permitted on nightly.
rust:
- stable
- 1.61.0
- 1.65.0
- nightly

features:
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Remove IpAddress::Unspecified
- 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).
- Fix enable `defmt/alloc` if `alloc` or `std` is enabled.
- Minimum Supported Rust Version (MSRV) **bumped** from 1.56 to 1.60
- Minimum Supported Rust Version (MSRV) **bumped** from 1.56 to 1.65

## [0.8.1] - 2022-05-12

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "smoltcp"
version = "0.8.1"
edition = "2018"
rust-version = "1.61"
rust-version = "1.65"
authors = ["whitequark <whitequark@whitequark.org>"]
description = "A TCP/IP stack designed for bare-metal, real-time systems without a heap."
documentation = "https://docs.rs/smoltcp/"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ include complicated compile-time computations, such as macro or type tricks, eve
at cost of performance degradation.

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

_smoltcp_ achieves [~Gbps of throughput](#examplesbenchmarkrs) when tested against
the Linux TCP stack in loopback mode.
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
//!
//! # Minimum Supported Rust Version (MSRV)
//!
//! This crate is guaranteed to compile on stable Rust 1.61 and up with any valid set of features.
//! This crate is guaranteed to compile on stable Rust 1.65 and up with any valid set of features.
//! It *might* compile on older versions but that may change in any new patch release.
//!
//! The exception is when using the `defmt` feature, in which case `defmt`'s MSRV applies, which
Expand Down

0 comments on commit e0329f5

Please sign in to comment.