mirror of
https://github.com/extrawurst/gitui.git
synced 2024-12-28 11:32:16 +03:00
prep release
This commit is contained in:
parent
bea70306e2
commit
4ef9659138
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
## [0.22.1] - 2022-11-22
|
||||||
|
|
||||||
|
Bugfix followup release - check `0.22.0` notes for more infos!
|
||||||
|
|
||||||
### Fixes
|
### Fixes
|
||||||
* improve performance by requesting branches info asynchronous ([92f63d1](https://github.com/extrawurst/gitui/commit/92f63d107c1dca1f10139668ff5b3ca752261b0f))
|
* 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))
|
* fix app startup delay due to using file watcher ([#1436](https://github.com/extrawurst/gitui/issues/1436))
|
||||||
|
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -63,7 +63,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "asyncgit"
|
name = "asyncgit"
|
||||||
version = "0.22.0"
|
version = "0.22.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"crossbeam-channel",
|
"crossbeam-channel",
|
||||||
"easy-cast",
|
"easy-cast",
|
||||||
@ -672,7 +672,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "gitui"
|
name = "gitui"
|
||||||
version = "0.22.0"
|
version = "0.22.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"asyncgit",
|
"asyncgit",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "gitui"
|
name = "gitui"
|
||||||
version = "0.22.0"
|
version = "0.22.1"
|
||||||
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"
|
||||||
@ -21,7 +21,7 @@ keywords = [
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0"
|
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"
|
backtrace = "0.3"
|
||||||
bitflags = "1.3"
|
bitflags = "1.3"
|
||||||
bugreport = "0.5"
|
bugreport = "0.5"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "asyncgit"
|
name = "asyncgit"
|
||||||
version = "0.22.0"
|
version = "0.22.1"
|
||||||
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"
|
||||||
|
Loading…
Reference in New Issue
Block a user