Skip to content

Commit a5ddc20

Browse files
committed
Bump MSRV to 1.65 to support newest nanoserde
The latest release of nanoserde has adopted the use of `let...else` statements, which were stabilized in Rust 1.65 via: rust-lang/rust#93628
1 parent 5fdca4b commit a5ddc20

File tree

6 files changed

+13
-8
lines changed

6 files changed

+13
-8
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ The format is based on [Keep a Changelog][1], and this project adheres to
2121
### Changed
2222

2323
- Mention `--` parsing behavior in help output.
24+
- Bump MSRV to the Rust 1.65 release.
2425

2526
### Fixed
2627

Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ members = ["crates/*", "xtask/"]
55
version = "0.1.0"
66
authors = ["Aaron Bull Schaefer <[email protected]>"]
77
edition = "2021"
8-
rust-version = "1.64"
8+
rust-version = "1.65"
99
description = "Convert characters into spelling alphabet code words"
1010
documentation = "https://github.com/EarthmanMuons/spellout/"
1111
readme = "README.md"

crates/spellabet/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ The format is based on [Keep a Changelog][1], and this project adheres to
1818
- Add the Royal Navy spelling alphabet.
1919
- Add the Western Union spelling alphabet.
2020

21+
### Changed
22+
23+
- Bump MSRV to the Rust 1.65 release.
24+
2125
## [0.1.1] - 2023-06-10
2226

2327
### Changed

crates/spellabet/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![CI status](https://img.shields.io/github/actions/workflow/status/EarthmanMuons/spellout/on-pull-request.yml?event=merge_group&label=ci&logo=github)](https://github.com/EarthmanMuons/spellout/actions?query=event%3Amerge_group)
66
[![crates.io](https://img.shields.io/crates/v/spellabet)](https://crates.io/crates/spellabet/)
77
[![docs.rs](https://img.shields.io/docsrs/spellabet)](https://docs.rs/spellabet/0.1.1/spellabet/)
8-
[![MSRV](https://img.shields.io/badge/rust-1.64%2B-blue)](https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field)
8+
[![MSRV](https://img.shields.io/badge/rust-1.65%2B-blue)](https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field)
99

1010
---
1111

xtask/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "xtask"
33
version = "0.0.0"
44
edition = "2021"
5-
rust-version = "1.64"
5+
rust-version = "1.65"
66
license = "MIT OR Apache-2.0"
77
publish = false
88

@@ -14,7 +14,7 @@ release = false
1414
anyhow = "1.0.72"
1515
is_ci = "1.1.1"
1616
lexopt = "0.3.0"
17-
nanoserde = "0.1.32"
17+
nanoserde = "0.1.33"
1818
rustc_version = "0.4.0"
1919
which = "4.4.0"
2020
xshell = "0.2.5"

0 commit comments

Comments
 (0)