summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2025-08-21 23:55:47 +0200
committermo8it <mo8it@proton.me>2025-08-21 23:55:58 +0200
commit295ad2e4bd41147bf10028800a82247c2c0048a4 (patch)
treeff057dd1c0cacd2edec125e33d27d6dc479ce693
parent628ef55337429c26df53f4bec823653d6944dddb (diff)
Raise MSRV
-rw-r--r--CHANGELOG.md2
-rw-r--r--Cargo.toml2
-rwxr-xr-xrelease-hook.sh2
3 files changed, 3 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 32d9510..18e0aa6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,7 +9,7 @@
### Changed
- Upgrade to Rust edition 2024
-- Raise the minimum supported Rust version to `1.87`
+- Raise the minimum supported Rust version to `1.88`
- Don't follow symlinks in the file watcher
- `dev new`: Don't add `.rustlings-state.txt` to `.gitignore`
diff --git a/Cargo.toml b/Cargo.toml
index 454f3b8..764b6b6 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -15,7 +15,7 @@ authors = [
repository = "https://github.com/rust-lang/rustlings"
license = "MIT"
edition = "2024" # On Update: Update the edition of `rustfmt` in `dev check` and `CARGO_TOML` in `dev new`.
-rust-version = "1.87"
+rust-version = "1.88"
[workspace.dependencies]
serde = { version = "1.0", features = ["derive"] }
diff --git a/release-hook.sh b/release-hook.sh
index 4213536..4934933 100755
--- a/release-hook.sh
+++ b/release-hook.sh
@@ -13,4 +13,4 @@ cargo test --workspace
cargo dev check --require-solutions
# MSRV
-cargo +1.87 dev check --require-solutions
+cargo +1.88 dev check --require-solutions