Skip to content

Commit c4b60a7

Browse files
committed
Bump MSRV to 1.70 because defmt macros needs it.
1 parent 3b369a0 commit c4b60a7

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
include:
2424
# Test MSRV
25-
- rust: 1.65.0 # keep in sync with manifest rust-version
25+
- rust: 1.70.0 # keep in sync with manifest rust-version
2626
TARGET: x86_64-unknown-linux-gnu
2727

2828
# Test nightly but don't fail

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
### Breaking
11+
- MSRV is now `1.70.0`.
12+
1013
## [v0.6.0] - 2024-08-07
1114

1215
### Breaking

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ categories = ["no-std"]
88
description = "serde-json for no_std programs"
99
documentation = "https://docs.rs/serde-json-core"
1010
edition = "2018"
11-
rust-version = "1.65.0" # keep in sync with ci, src/lib.rs, and README
11+
rust-version = "1.70.0" # keep in sync with ci, src/lib.rs, and README
1212
keywords = ["serde", "json"]
1313
license = "MIT OR Apache-2.0"
1414
name = "serde-json-core"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This project is developed and maintained by the [rust-embedded-community].
1212

1313
## Minimum Supported Rust Version (MSRV)
1414

15-
This crate is guaranteed to compile on stable Rust 1.65.0 and up. It *might*
15+
This crate is guaranteed to compile on stable Rust 1.70.0 and up. It *might*
1616
compile with older versions but that may change in any new patch release.
1717

1818
## License

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
//!
7171
//! # Minimum Supported Rust Version (MSRV)
7272
//!
73-
//! This crate is guaranteed to compile on stable Rust 1.65.0 and up. It *might* compile with older
73+
//! This crate is guaranteed to compile on stable Rust 1.70.0 and up. It *might* compile with older
7474
//! versions but that may change in any new patch release.
7575
7676
#![deny(missing_docs)]

0 commit comments

Comments
 (0)