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 ## Unreleased
## [0.24.2] - 2023-09-03
### Fixes ### Fixes
* fix commit log not updating after branch switch ([#1862](https://github.com/extrawurst/gitui/issues/1862)) * 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 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 ## [0.24.1] - 2023-08-30

4
Cargo.lock generated
View file

@ -49,7 +49,7 @@ checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
[[package]] [[package]]
name = "asyncgit" name = "asyncgit"
version = "0.24.1" version = "0.24.2"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"crossbeam-channel", "crossbeam-channel",
@ -672,7 +672,7 @@ dependencies = [
[[package]] [[package]]
name = "gitui" name = "gitui"
version = "0.24.1" version = "0.24.2"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"asyncgit", "asyncgit",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "gitui" name = "gitui"
version = "0.24.1" version = "0.24.2"
authors = ["extrawurst <mail@rusticorn.com>"] authors = ["extrawurst <mail@rusticorn.com>"]
description = "blazing fast terminal-ui for git" description = "blazing fast terminal-ui for git"
edition = "2021" edition = "2021"

View file

@ -1,6 +1,6 @@
[package] [package]
name = "asyncgit" name = "asyncgit"
version = "0.24.1" version = "0.24.2"
authors = ["extrawurst <mail@rusticorn.com>"] authors = ["extrawurst <mail@rusticorn.com>"]
edition = "2021" edition = "2021"
description = "allow using git2 in a asynchronous context" description = "allow using git2 in a asynchronous context"