Skip to content

Commit bec514e

Browse files
committed
chore: Upgrade MSRV to 1.60.0
1 parent 03fbe30 commit bec514e

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.clippy.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
msrv = "1.54.0" # MSRV
1+
msrv = "1.60.0" # MSRV

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- name: Install Rust (MSRV)
5151
uses: actions-rs/toolchain@v1
5252
with:
53-
toolchain: 1.54.0 # MSRV
53+
toolchain: 1.60.0 # MSRV
5454
profile: minimal
5555
override: true
5656
- name: Install Rust (base)
@@ -99,15 +99,15 @@ jobs:
9999
run: cmd.exe /C .\examples\hello.ers
100100
continue-on-error: true
101101
msrv:
102-
name: "Check MSRV: 1.54.0"
102+
name: "Check MSRV: 1.60.0"
103103
runs-on: ubuntu-latest
104104
steps:
105105
- name: Checkout repository
106106
uses: actions/checkout@v3
107107
- name: Install Rust
108108
uses: actions-rs/toolchain@v1
109109
with:
110-
toolchain: 1.54.0 # MSRV
110+
toolchain: 1.60.0 # MSRV
111111
profile: minimal
112112
override: true
113113
- uses: Swatinem/rust-cache@v1
@@ -161,7 +161,7 @@ jobs:
161161
- name: Install Rust
162162
uses: actions-rs/toolchain@v1
163163
with:
164-
toolchain: 1.54.0 # MSRV
164+
toolchain: 1.60.0 # MSRV
165165
profile: minimal
166166
override: true
167167
components: clippy

.github/workflows/rust-next.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Install Rust (MSRV)
3333
uses: actions-rs/toolchain@v1
3434
with:
35-
toolchain: 1.54.0 # MSRV
35+
toolchain: 1.60.0 # MSRV
3636
profile: minimal
3737
override: true
3838
- name: Install Rust (base)
@@ -84,9 +84,9 @@ jobs:
8484
strategy:
8585
matrix:
8686
rust:
87-
- 1.54.0 # MSRV
87+
- 1.60.0 # MSRV
8888
- stable
89-
continue-on-error: ${{ matrix.rust != '1.54.0' }} # MSRV
89+
continue-on-error: ${{ matrix.rust != '1.60.0' }} # MSRV
9090
runs-on: ubuntu-latest
9191
steps:
9292
- name: Checkout repository

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ readme = "README.md"
1010
categories = ["command-line-utilities", "development-tools"]
1111
keywords = ["cargo", "script"]
1212
edition = "2018"
13-
rust-version = "1.54.0" # MSRV
13+
rust-version = "1.60.0" # MSRV
1414
authors = ["Fredrik Fornwall <fredrik@fornwall.net>"]
1515
include = [
1616
"build.rs",

0 commit comments

Comments
 (0)