summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorextrawurst <mail@rusticorn.com>2023-08-30 15:55:26 +0200
committerextrawurst <mail@rusticorn.com>2023-08-30 15:55:26 +0200
commit85ab9d47ad762ed90de78d899960f060433b6a34 (patch)
tree3dcf107ff48c4cc452132d607270f72f4e556e8a
parentf2f51cde8294d4829df6410c5849a17c3f9c32ac (diff)
prepare releasev0.24.1
-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 d02ec4b1..85c95ade 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.1] - 2023-08-30
+
### Fixes
* fix performance problem in big repo with a lot of incoming commits ([#1845](https://github.com/extrawurst/gitui/issues/1845))
* fix error switching to a branch with '/' in the name ([#1851](https://github.com/extrawurst/gitui/issues/1851))
diff --git a/Cargo.lock b/Cargo.lock
index 20f66676..1b53fa0d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -49,7 +49,7 @@ checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
[[package]]
name = "asyncgit"
-version = "0.24.0"
+version = "0.24.1"
dependencies = [
"bitflags",
"crossbeam-channel",
@@ -672,7 +672,7 @@ dependencies = [
[[package]]
name = "gitui"
-version = "0.24.0"
+version = "0.24.1"
dependencies = [
"anyhow",
"asyncgit",
diff --git a/Cargo.toml b/Cargo.toml
index 3e856ccd..12fbeb25 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "gitui"
-version = "0.24.0"
+version = "0.24.1"
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 b7279394..99165be7 100644
--- a/asyncgit/Cargo.toml
+++ b/asyncgit/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "asyncgit"
-version = "0.24.0"
+version = "0.24.1"
authors = ["extrawurst <mail@rusticorn.com>"]
edition = "2021"
description = "allow using git2 in a asynchronous context"