summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorextrawurst <mail@rusticorn.com>2023-09-03 18:52:33 +0200
committerextrawurst <mail@rusticorn.com>2023-09-03 18:52:33 +0200
commit11b9e8193cb3c045c19c006c1013790776596efd (patch)
treec6fd93735ff9a6dd9384bca138fa70365a5e4598
parent6356f64b1d286b834ffd982a7e77d66ff04db292 (diff)
prepare for releasev0.24.2
-rw-r--r--CHANGELOG.md3
-rw-r--r--Cargo.lock4
-rw-r--r--Cargo.toml2
-rw-r--r--asyncgit/Cargo.toml2
4 files changed, 7 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2949ab0e..70d9fbe4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
+## [0.24.2] - 2023-09-03
+
### Fixes
* fix commit log not updating after branch switch ([#1862](https://github.com/extrawurst/gitui/issues/1862))
* fix stashlist not updating after pop/drop ([#1864](https://github.com/extrawurst/gitui/issues/1864))
+* fix commit log corruption when tabbing in/out while parsing log ([#1866](https://github.com/extrawurst/gitui/issues/1866))
## [0.24.1] - 2023-08-30
diff --git a/Cargo.lock b/Cargo.lock
index 1b53fa0d..58fcb567 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -49,7 +49,7 @@ checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
[[package]]
name = "asyncgit"
-version = "0.24.1"
+version = "0.24.2"
dependencies = [
"bitflags",
"crossbeam-channel",
@@ -672,7 +672,7 @@ dependencies = [
[[package]]
name = "gitui"
-version = "0.24.1"
+version = "0.24.2"
dependencies = [
"anyhow",
"asyncgit",
diff --git a/Cargo.toml b/Cargo.toml
index 12fbeb25..1efd26f6 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "gitui"
-version = "0.24.1"
+version = "0.24.2"
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 99165be7..df03ba17 100644
--- a/asyncgit/Cargo.toml
+++ b/asyncgit/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "asyncgit"
-version = "0.24.1"
+version = "0.24.2"
authors = ["extrawurst <mail@rusticorn.com>"]
edition = "2021"
description = "allow using git2 in a asynchronous context"