From 85ab9d47ad762ed90de78d899960f060433b6a34 Mon Sep 17 00:00:00 2001 From: extrawurst Date: Wed, 30 Aug 2023 15:55:26 +0200 Subject: [PATCH] prepare release --- CHANGELOG.md | 2 ++ Cargo.lock | 4 ++-- Cargo.toml | 2 +- asyncgit/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d02ec4b1b7..85c95ade4c 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 20f6667672..1b53fa0df7 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 3e856ccd5f..12fbeb257f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitui" -version = "0.24.0" +version = "0.24.1" authors = ["extrawurst "] description = "blazing fast terminal-ui for git" edition = "2021" diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml index b72793949f..99165be744 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 "] edition = "2021" description = "allow using git2 in a asynchronous context"