Skip to content

Commit 7d96b9b

Browse files
committed
Fix Rust version in CI, contributing, and I actually forgot to update the msrv in Cargo.toml
1 parent 73619d3 commit 7d96b9b

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
steps:
2626
- uses: actions/checkout@v4
2727

28-
- name: Install Rust 1.81.0
29-
uses: dtolnay/rust-toolchain@1.81.0
28+
- name: Install Rust 1.82.0
29+
uses: dtolnay/rust-toolchain@1.82.0
3030
with:
3131
components: rustfmt, clippy
3232

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v4
1414

15-
- name: Install Rust 1.81.0
16-
uses: dtolnay/rust-toolchain@1.81.0
15+
- name: Install Rust 1.82.0
16+
uses: dtolnay/rust-toolchain@1.82.0
1717
with:
1818
components: rustfmt, clippy
1919

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ cargo check
5454
cargo test
5555
```
5656

57-
Make sure `graphql-parser` and other dependencies are working correctly. You’ll need Rust 1.81+.
57+
Make sure `graphql-parser` and other dependencies are working correctly. You’ll need Rust 1.82+.
5858

5959
#### 3. Make Your Changes
6060

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ categories = [
2020
]
2121

2222
[workspace.metadata]
23-
msrv = "1.81.0"
23+
msrv = "1.82.0"
2424

2525
[workspace.dependencies]
2626
# Main crate dependencies

0 commit comments

Comments
 (0)