Skip to content

Commit f56927e

Browse files
committed
chore: Bump MSRV
1 parent 7c96b99 commit f56927e

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.clippy.toml

Lines changed: 1 addition & 1 deletion
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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,15 @@ jobs:
6060
- name: No-default features
6161
run: cargo test --workspace --no-default-features
6262
msrv:
63-
name: "Check MSRV: 1.54.0"
63+
name: "Check MSRV: 1.60.0"
6464
runs-on: ubuntu-latest
6565
steps:
6666
- name: Checkout repository
6767
uses: actions/checkout@v3
6868
- name: Install Rust
6969
uses: actions-rs/toolchain@v1
7070
with:
71-
toolchain: 1.54.0 # MSRV
71+
toolchain: 1.60.0 # MSRV
7272
profile: minimal
7373
override: true
7474
- uses: Swatinem/rust-cache@v1
@@ -122,7 +122,7 @@ jobs:
122122
- name: Install Rust
123123
uses: actions-rs/toolchain@v1
124124
with:
125-
toolchain: 1.54.0 # MSRV
125+
toolchain: 1.60.0 # MSRV
126126
profile: minimal
127127
override: true
128128
components: clippy

.github/workflows/rust-next.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ jobs:
7171
strategy:
7272
matrix:
7373
rust:
74-
- 1.54.0 # MSRV
74+
- 1.60.0 # MSRV
7575
- stable
76-
continue-on-error: ${{ matrix.rust != '1.54.0' }} # MSRV
76+
continue-on-error: ${{ matrix.rust != '1.60.0' }} # MSRV
7777
runs-on: ubuntu-latest
7878
steps:
7979
- name: Checkout repository

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ documentation = "http://docs.rs/git2-ext/"
99
readme = "README.md"
1010
categories = ["command-line-interface"]
1111
keywords = ["git"]
12-
edition = "2018"
12+
edition = "2021"
13+
rust-version = "1.60.0" # MSRV
1314
include = [
1415
"build.rs",
1516
"src/**/*",

0 commit comments

Comments
 (0)