prepare for release

This commit is contained in:
extrawurst 2023-09-03 18:52:33 +02:00
parent 6356f64b1d
commit 11b9e8193c
4 changed files with 7 additions and 4 deletions

View File

@ -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

4
Cargo.lock generated
View File

@ -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",

View File

@ -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"

View File

@ -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"