summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorextrawurst <mail@rusticorn.com>2023-09-09 10:59:21 +0200
committerextrawurst <mail@rusticorn.com>2023-09-09 10:59:21 +0200
commit87686118768e89b5e86611b4057c05d0d7abb2bc (patch)
tree30af306e5e11635a55fe75a92fea6433e9432f48
parent015d40954073b4f4426f70000fd748e38514cabd (diff)
prepare releasev0.24.3
-rw-r--r--CHANGELOG.md2
-rw-r--r--Cargo.lock4
-rw-r--r--Cargo.toml2
-rw-r--r--asyncgit/Cargo.toml2
4 files changed, 6 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 77adb8a2..13befd08 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
+## [0.24.3] - 2023-09-09
+
### Fixes
* log: major lag when going beyond last search hit ([#1876](https://github.com/extrawurst/gitui/issues/1876))
diff --git a/Cargo.lock b/Cargo.lock
index f840700a..787a0f4d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -97,7 +97,7 @@ checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
[[package]]
name = "asyncgit"
-version = "0.24.2"
+version = "0.24.3"
dependencies = [
"bitflags",
"crossbeam-channel",
@@ -725,7 +725,7 @@ dependencies = [
[[package]]
name = "gitui"
-version = "0.24.2"
+version = "0.24.3"
dependencies = [
"anyhow",
"asyncgit",
diff --git a/Cargo.toml b/Cargo.toml
index fe7ac0d5..f1065a01 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "gitui"
-version = "0.24.2"
+version = "0.24.3"
authors = ["extrawurst <mail@rusticorn.com>"]
description = "blazing fast terminal-ui for git"
edition = "2021"
diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml
index 8f773c83..7da1b2da 100644
--- a/asyncgit/Cargo.toml
+++ b/asyncgit/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "asyncgit"
-version = "0.24.2"
+version = "0.24.3"
authors = ["extrawurst <mail@rusticorn.com>"]
edition = "2021"
description = "allow using git2 in a asynchronous context"