Skip to content

Commit 56f87bd

Browse files
authored
Merge branch 'master' into feat/checkout_method
2 parents af2b6b9 + 88ace76 commit 56f87bd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+577
-398
lines changed

.clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
msrv = "1.81.0"
1+
msrv = "1.82.0"
22
cognitive-complexity-threshold = 18

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: [ubuntu-latest, macos-latest, windows-latest]
20-
rust: [nightly, stable, "1.81"]
20+
rust: [nightly, stable, "1.82"]
2121
runs-on: ${{ matrix.os }}
2222
continue-on-error: ${{ matrix.rust == 'nightly' }}
2323

@@ -92,7 +92,7 @@ jobs:
9292
strategy:
9393
fail-fast: false
9494
matrix:
95-
rust: [nightly, stable, "1.81"]
95+
rust: [nightly, stable, "1.82"]
9696
continue-on-error: ${{ matrix.rust == 'nightly' }}
9797
steps:
9898
- uses: actions/checkout@v4
@@ -144,7 +144,7 @@ jobs:
144144
strategy:
145145
fail-fast: false
146146
matrix:
147-
rust: [nightly, stable, "1.81"]
147+
rust: [nightly, stable, "1.82"]
148148
continue-on-error: ${{ matrix.rust == 'nightly' }}
149149
steps:
150150
- uses: actions/checkout@v4
@@ -195,7 +195,7 @@ jobs:
195195
strategy:
196196
fail-fast: false
197197
matrix:
198-
rust: [nightly, stable, "1.81"]
198+
rust: [nightly, stable, "1.82"]
199199
continue-on-error: ${{ matrix.rust == 'nightly' }}
200200
steps:
201201
- uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99
* execute git-hooks directly if possible (on *nix) else use sh instead of bash (without reading SHELL variable) [[@Joshix](https://github.com/Joshix-1)] ([#2483](https://github.com/extrawurst/gitui/pull/2483))
10+
* increase MSRV from 1.81 to 1.82 [[@cruessler](https://github.com/cruessler)]
1011

1112
### Added
1213
* support choosing checkout branch method when status is not empty [[@fatpandac](https://github.com/fatpandac)] ([#2404](https://github.com/extrawurst/gitui/issues/2404))
@@ -32,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3233
### Fixes
3334
* resolve `core.hooksPath` relative to `GIT_WORK_TREE` [[@naseschwarz](https://github.com/naseschwarz)] ([#2571](https://github.com/gitui-org/gitui/issues/2571))
3435
* yanking commit ranges no longer generates incorrect dotted range notations, but lists each individual commit [[@naseschwarz](https://github.com/naseschwarz)] (https://github.com/gitui-org/gitui/issues/2576)
36+
* print slightly nicer errors when failing to create a directory [[@linkmauve](https://github.com/linkmauve)] (https://github.com/gitui-org/gitui/pull/2728)
3537

3638
## [0.27.0] - 2024-01-14
3739

@@ -70,7 +72,7 @@ but this also allows us now to define colors in the common hex format:
7072
Checkout [THEMES.md](./THEMES.md) for more info.
7173

7274
### Added
73-
* due to github runner changes, the regular mac build is now arm64, so we added support for intel x86 apple build in nightlies and releases (via separat artifact)
75+
* due to github runner changes, the regular mac build is now arm64, so we added support for intel x86 apple build in nightlies and releases (via separate artifact)
7476
* support `BUILD_GIT_COMMIT_ID` enabling builds from `git archive` generated source tarballs or other outside a git repo [[@alerque](https://github.com/alerque)] ([#2187](https://github.com/gitui-org/gitui/pull/2187))
7577

7678
### Fixes
@@ -907,7 +909,7 @@ Thanks for your interest and support over this year! Read more about the 1 year
907909
- log tab refreshes when head changes ([#78](https://github.com/gitui-org/gitui/issues/78))
908910
- performance optimization of the log tab in big repos
909911
- more readable default color for the commit hash in the log tab
910-
- more error/panic resiliance (`unwrap`/`panic` denied by clippy now) [[@MCord](https://github.com/MCord)](<[#77](https://github.com/gitui-org/gitui/issues/77)>)
912+
- more error/panic resilience (`unwrap`/`panic` denied by clippy now) [[@MCord](https://github.com/MCord)](<[#77](https://github.com/gitui-org/gitui/issues/77)>)
911913

912914
### Fixes
913915

0 commit comments

Comments
 (0)