From 11b9e8193cb3c045c19c006c1013790776596efd Mon Sep 17 00:00:00 2001 From: extrawurst Date: Sun, 3 Sep 2023 18:52:33 +0200 Subject: [PATCH] prepare for release --- CHANGELOG.md | 3 +++ Cargo.lock | 4 ++-- Cargo.toml | 2 +- asyncgit/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2949ab0ec3..70d9fbe401 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 1b53fa0df7..58fcb567d7 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 12fbeb257f..1efd26f686 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitui" -version = "0.24.1" +version = "0.24.2" authors = ["extrawurst "] description = "blazing fast terminal-ui for git" edition = "2021" diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml index 99165be744..df03ba1726 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 "] edition = "2021" description = "allow using git2 in a asynchronous context"