Release prep (#2183)

This commit is contained in:
extrawurst 2024-04-14 20:31:05 +02:00 committed by GitHub
parent b08eddb45b
commit 09a2f70c89
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 8 additions and 6 deletions

View file

@ -7,13 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
## [0.26.0] - 2024-04-14
### Added
* sign commits using openpgp [[@hendrikmaus](https://github.com/hendrikmaus)] ([#97](https://github.com/extrawurst/gitui/issues/97))
* 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))
* provide nightly builds (see [NIGHTLIES.md](./NIGHTLIES.md)) ([#2083](https://github.com/extrawurst/gitui/issues/2083))
* more version info in `gitui -V` and `help popup` (including git hash)
* support `core.commitChar` filtering [[@concelare](https://github.com/concelare)] ([#2136](https://github.com/extrawurst/gitui/issues/2136))
* allow reset in branch popup ([#2170](https://github.com/extrawurst/gitui/issues/2170))
* 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))
* respect configuration for remote when pushing [[@cruessler](https://github.com/cruessler)]
### Changed

4
Cargo.lock generated
View file

@ -150,7 +150,7 @@ checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519"
[[package]]
name = "asyncgit"
version = "0.25.1"
version = "0.26.0"
dependencies = [
"bitflags 2.5.0",
"crossbeam-channel",
@ -1032,7 +1032,7 @@ dependencies = [
[[package]]
name = "gitui"
version = "0.25.2"
version = "0.26.0"
dependencies = [
"anyhow",
"asyncgit",

View file

@ -1,6 +1,6 @@
[package]
name = "gitui"
version = "0.25.2"
version = "0.26.0"
authors = ["extrawurst <mail@rusticorn.com>"]
description = "blazing fast terminal-ui for git"
edition = "2021"
@ -16,7 +16,7 @@ build = "build.rs"
[dependencies]
anyhow = "1.0"
asyncgit = { path = "./asyncgit", version = "0.25", default-features = false }
asyncgit = { path = "./asyncgit", version = "0.26", default-features = false }
backtrace = "0.3"
bitflags = "2.5"
bugreport = "0.5"

View file

@ -1,6 +1,6 @@
[package]
name = "asyncgit"
version = "0.25.1"
version = "0.26.0"
authors = ["extrawurst <mail@rusticorn.com>"]
edition = "2021"
description = "allow using git2 in a asynchronous context"