mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 00:48:35 +00:00
Release prep (#2183)
This commit is contained in:
parent
b08eddb45b
commit
09a2f70c89
4 changed files with 8 additions and 6 deletions
|
|
@ -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
4
Cargo.lock
generated
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue