prep release

This commit is contained in:
extrawurst 2022-11-22 11:07:41 +01:00
parent bea70306e2
commit 4ef9659138
4 changed files with 9 additions and 5 deletions

View File

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
## [0.22.1] - 2022-11-22
Bugfix followup release - check `0.22.0` notes for more infos!
### Fixes
* improve performance by requesting branches info asynchronous ([92f63d1](https://github.com/extrawurst/gitui/commit/92f63d107c1dca1f10139668ff5b3ca752261b0f))
* fix app startup delay due to using file watcher ([#1436](https://github.com/extrawurst/gitui/issues/1436))

4
Cargo.lock generated
View File

@ -63,7 +63,7 @@ dependencies = [
[[package]]
name = "asyncgit"
version = "0.22.0"
version = "0.22.1"
dependencies = [
"crossbeam-channel",
"easy-cast",
@ -672,7 +672,7 @@ dependencies = [
[[package]]
name = "gitui"
version = "0.22.0"
version = "0.22.1"
dependencies = [
"anyhow",
"asyncgit",

View File

@ -1,6 +1,6 @@
[package]
name = "gitui"
version = "0.22.0"
version = "0.22.1"
authors = ["extrawurst <mail@rusticorn.com>"]
description = "blazing fast terminal-ui for git"
edition = "2021"
@ -21,7 +21,7 @@ keywords = [
[dependencies]
anyhow = "1.0"
asyncgit = { path = "./asyncgit", version = "0.22", default-features = false }
asyncgit = { path = "./asyncgit", version = "0.22.1", default-features = false }
backtrace = "0.3"
bitflags = "1.3"
bugreport = "0.5"

View File

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