Skip to content

Commit 757ddf0

Browse files
committed
chore!(msrv): bump MSRV to 1.81
1 parent fbd1de4 commit 757ddf0

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ${{ matrix.os }}
2929
strategy:
3030
matrix:
31-
rust: [1.71.1, stable]
31+
rust: [1.81, stable]
3232
os: [ubuntu-latest, macOS-latest, windows-latest]
3333

3434
steps:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ readme = "README.md"
88
homepage = "https://kdl.dev"
99
repository = "https://github.com/kdl-org/kdl-rs"
1010
keywords = ["kdl", "document", "serialization", "config"]
11-
rust-version = "1.71.1"
11+
rust-version = "1.81"
1212
edition = "2021"
1313

1414
[features]

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,12 @@ Error:
109109

110110
* `span` (default) - Includes spans in the various document-related structs.
111111
* `v1` - Adds support for v1 parsing. This will pull in the entire previous
112-
version of `kdl-rs`, and so may be fairly heavy.
112+
version of `kdl-rs`, and so may be fairly heavy.
113113
* `v1-fallback` - Implies `v1`. Makes it so the various `*::parse()` and
114-
`FromStr` implementations try to parse their inputs as `v2`, and, if that
115-
fails, try again with `v1`. For `KdlDocument`, a heuristic will be applied
116-
if both `v1` and `v2` parsers fail, to pick which error(s) to return. For
117-
other types, only the `v2` parser's errors will be returned.
114+
`FromStr` implementations try to parse their inputs as `v2`, and, if that
115+
fails, try again with `v1`. For `KdlDocument`, a heuristic will be applied
116+
if both `v1` and `v2` parsers fail, to pick which error(s) to return. For
117+
other types, only the `v2` parser's errors will be returned.
118118

119119
### Quirks
120120

@@ -140,9 +140,9 @@ means a few things:
140140
representation will be thrown away and the actual value will be used when
141141
serializing.
142142

143-
### Minimum Supported Rust Version
143+
### Minimum Supported Rust Version (MSRV)
144144

145-
You must be at least `1.71.1` tall to get on this ride.
145+
You must be at least `1.81` tall to get on this ride.
146146

147147
### License
148148

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
//!
141141
//! ## Minimum Supported Rust Version (MSRV)
142142
//!
143-
//! You must be at least `1.71.1` tall to get on this ride.
143+
//! You must be at least `1.81` tall to get on this ride.
144144
//!
145145
//! ## License
146146
//!

tools/kdl-lsp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ readme = "README.md"
99
homepage = "https://kdl.dev"
1010
repository = "https://github.com/kdl-org/kdl-rs"
1111
keywords = ["kdl", "document", "config", "lsp", "language-server"]
12-
rust-version = "1.71.1"
12+
rust-version = "1.81"
1313

1414
[dependencies]
1515
miette.workspace = true

0 commit comments

Comments
 (0)