Skip to content

Commit 09a2f70

Browse files
authored
Release prep (#2183)
1 parent b08eddb commit 09a2f70

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## [0.26.0] - 2024-04-14
11+
1012
### Added
1113
* sign commits using openpgp [[@hendrikmaus](https://github.com/hendrikmaus)] ([#97](https://github.com/extrawurst/gitui/issues/97))
14+
* support ssh commit signing (when `user.signingKey` and `gpg.format = ssh` of gitconfig are set; ssh-agent isn't yet supported) [[@yanganto](https://github.com/yanganto)] ([#1149](https://github.com/extrawurst/gitui/issues/1149))
1215
* provide nightly builds (see [NIGHTLIES.md](./NIGHTLIES.md)) ([#2083](https://github.com/extrawurst/gitui/issues/2083))
1316
* more version info in `gitui -V` and `help popup` (including git hash)
1417
* support `core.commitChar` filtering [[@concelare](https://github.com/concelare)] ([#2136](https://github.com/extrawurst/gitui/issues/2136))
1518
* allow reset in branch popup ([#2170](https://github.com/extrawurst/gitui/issues/2170))
16-
* support ssh commit signing (when `user.signingKey` and `gpg.format = ssh` of gitconfig are set; ssh-agent isn't yet supported) [[@yanganto](https://github.com/yanganto)] ([#1149](https://github.com/extrawurst/gitui/issues/1149))
1719
* respect configuration for remote when pushing [[@cruessler](https://github.com/cruessler)]
1820

1921
### Changed

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gitui"
3-
version = "0.25.2"
3+
version = "0.26.0"
44
authors = ["extrawurst <[email protected]>"]
55
description = "blazing fast terminal-ui for git"
66
edition = "2021"
@@ -16,7 +16,7 @@ build = "build.rs"
1616

1717
[dependencies]
1818
anyhow = "1.0"
19-
asyncgit = { path = "./asyncgit", version = "0.25", default-features = false }
19+
asyncgit = { path = "./asyncgit", version = "0.26", default-features = false }
2020
backtrace = "0.3"
2121
bitflags = "2.5"
2222
bugreport = "0.5"

asyncgit/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "asyncgit"
3-
version = "0.25.1"
3+
version = "0.26.0"
44
authors = ["extrawurst <[email protected]>"]
55
edition = "2021"
66
description = "allow using git2 in a asynchronous context"

0 commit comments

Comments
 (0)