Skip to content

Commit e1d76d9

Browse files
committed
breaking: update msrv to 1.80
1 parent c6628ff commit e1d76d9

File tree

25 files changed

+27
-26
lines changed

25 files changed

+27
-26
lines changed

.github/workflows/linux-git-devel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
uses: actions-rs/toolchain@v1
5555
with:
5656
profile: minimal
57-
toolchain: 1.74
57+
toolchain: "1.80"
5858
override: true
5959

6060
- uses: actions/checkout@v4

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
uses: actions-rs/toolchain@v1
7575
with:
7676
profile: minimal
77-
toolchain: 1.74
77+
toolchain: "1.80"
7878
override: true
7979

8080
- name: Cache dependencies

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: actions-rs/toolchain@v1
2828
with:
2929
profile: minimal
30-
toolchain: 1.74
30+
toolchain: "1.80"
3131
override: true
3232

3333
- name: Cache dependencies

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions-rs/toolchain@v1
2121
with:
2222
profile: minimal
23-
toolchain: 1.74
23+
toolchain: "1.80"
2424
override: true
2525

2626
- name: Cache dependencies

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
- `scm-record` upgraded to [v0.5.0](https://github.com/arxanas/scm-record/releases/tag/v0.5.0).
1515
- (#1463): `git switch` now accepts a revset whose sole head will be checked out
16+
- BREAKING: The minimum supported Rust version (MSRV) is now 1.80.
1617

1718
## [v0.10.0] - 2024-10-10
1819

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

git-branchless-hook/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
clippy::clone_on_ref_ptr,
1515
clippy::dbg_macro
1616
)]
17-
#![allow(clippy::too_many_arguments, clippy::blocks_in_if_conditions)]
17+
#![allow(clippy::too_many_arguments, clippy::blocks_in_conditions)]
1818

1919
use std::fmt::Write;
2020
use std::fs::File;

git-branchless-init/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
clippy::clone_on_ref_ptr,
88
clippy::dbg_macro
99
)]
10-
#![allow(clippy::too_many_arguments, clippy::blocks_in_if_conditions)]
10+
#![allow(clippy::too_many_arguments, clippy::blocks_in_conditions)]
1111

1212
use std::fmt::Write;
1313
use std::io::{stdin, stdout, BufRead, BufReader, Write as WriteIo};

git-branchless-invoke/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
clippy::clone_on_ref_ptr,
1212
clippy::dbg_macro
1313
)]
14-
#![allow(clippy::too_many_arguments, clippy::blocks_in_if_conditions)]
14+
#![allow(clippy::too_many_arguments, clippy::blocks_in_conditions)]
1515

1616
use std::any::Any;
1717
use std::collections::HashMap;

git-branchless-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords = ["git"]
66
license = "MIT OR Apache-2.0"
77
name = "git-branchless-lib"
88
repository = "https://github.com/arxanas/git-branchless"
9-
rust-version = "1.64.0"
9+
rust-version = "1.80"
1010
version = "0.10.0"
1111

1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

0 commit comments

Comments
 (0)