diff --git a/CHANGELOG.md b/CHANGELOG.md index 77adb8a2cd..13befd08f3 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 f840700a64..787a0f4d3f 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 fe7ac0d586..f1065a01ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitui" -version = "0.24.2" +version = "0.24.3" authors = ["extrawurst "] description = "blazing fast terminal-ui for git" edition = "2021" diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml index 8f773c836c..7da1b2dab8 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 "] edition = "2021" description = "allow using git2 in a asynchronous context"