Skip to content

Commit cf82f5d

Browse files
authored
Merge pull request #30 from epage/change
fix!: Make usable for git-dive
2 parents 85d5f12 + afb727a commit cf82f5d

18 files changed

+1363
-657
lines changed

.clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
msrv = "1.60.0" # MSRV
1+
msrv = "1.61.0" # MSRV

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@ jobs:
5555
- name: No-default features
5656
run: cargo test --workspace --no-default-features
5757
msrv:
58-
name: "Check MSRV: 1.60.0"
58+
name: "Check MSRV: 1.61.0"
5959
runs-on: ubuntu-latest
6060
steps:
6161
- name: Checkout repository
6262
uses: actions/checkout@v2
6363
- name: Install Rust
6464
uses: actions-rs/toolchain@v1
6565
with:
66-
toolchain: 1.60.0 # MSRV
66+
toolchain: 1.61.0 # MSRV
6767
profile: minimal
6868
override: true
6969
- uses: Swatinem/rust-cache@v1
@@ -117,7 +117,7 @@ jobs:
117117
- name: Install Rust
118118
uses: actions-rs/toolchain@v1
119119
with:
120-
toolchain: 1.60.0 # MSRV
120+
toolchain: 1.61.0 # MSRV
121121
profile: minimal
122122
override: true
123123
components: clippy

.github/workflows/rust-next.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ jobs:
6161
strategy:
6262
matrix:
6363
rust:
64-
- 1.60.0 # MSRV
64+
- 1.61.0 # MSRV
6565
- stable
66-
continue-on-error: ${{ matrix.rust != '1.60.0' }} # MSRV
66+
continue-on-error: ${{ matrix.rust != '1.61.0' }} # MSRV
6767
runs-on: ubuntu-latest
6868
steps:
6969
- name: Checkout repository

0 commit comments

Comments
 (0)