diff --git a/CHANGELOG.md b/CHANGELOG.md index 25990117..f151c5e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)) diff --git a/Cargo.lock b/Cargo.lock index ec0e4886..c0f5d1d3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index 6558fed2..1d5a6128 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitui" -version = "0.22.0" +version = "0.22.1" authors = ["extrawurst "] 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" diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml index a6e34232..5ab4da13 100644 --- a/asyncgit/Cargo.toml +++ b/asyncgit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asyncgit" -version = "0.22.0" +version = "0.22.1" authors = ["extrawurst "] edition = "2021" description = "allow using git2 in a asynchronous context"