summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorextrawurst <776816+extrawurst@users.noreply.github.com>2024-04-14 20:31:05 +0200
committerGitHub <noreply@github.com>2024-04-14 20:31:05 +0200
commit09a2f70c890e358f5771085536a728f53d63b887 (patch)
treea1bd4ed5e7bcf5c8d7e51ce52876b7e5794311ca
parentb08eddb45b59175e37165d0aeca0ef99482ac6c3 (diff)
Release prep (#2183)
-rw-r--r--CHANGELOG.md4
-rw-r--r--Cargo.lock4
-rw-r--r--Cargo.toml4
-rw-r--r--asyncgit/Cargo.toml2
4 files changed, 8 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 99e6e20f..65e7e646 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/Cargo.lock b/Cargo.lock
index 3a5f5be2..dd43c440 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -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",
diff --git a/Cargo.toml b/Cargo.toml
index 21536544..f580efda 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"
diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml
index 1466e4c1..94dc9deb 100644
--- a/asyncgit/Cargo.toml
+++ b/asyncgit/Cargo.toml
@@ -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"