prepare 0.13 release

This commit is contained in:
Stephan Dilly 2021-03-14 12:58:58 +01:00
parent 70d4c5b1d5
commit f232ed8107
3 changed files with 5 additions and 4 deletions

View file

@ -31,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- keep diff line selection after staging/unstaging/discarding ([#583](https://github.com/extrawurst/gitui/issues/583))
- fix pull deadlocking when aborting credentials input ([#586](https://github.com/extrawurst/gitui/issues/586))
- error diagnostics for config loading ([#589](https://github.com/extrawurst/gitui/issues/589))
## [0.12.0] - 2020-03-03

2
Cargo.lock generated
View file

@ -343,7 +343,7 @@ dependencies = [
[[package]]
name = "gitui"
version = "0.12.0"
version = "0.13.0"
dependencies = [
"anyhow",
"asyncgit",

View file

@ -1,6 +1,6 @@
[package]
name = "gitui"
version = "0.12.0"
version = "0.13.0"
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
description = "blazing fast terminal-ui for git"
edition = "2018"
@ -19,8 +19,8 @@ keywords = [
]
[dependencies]
scopetime = { path = "./scopetime" }
asyncgit = { path = "./asyncgit" }
scopetime = { path = "./scopetime", version = "0.1" }
asyncgit = { path = "./asyncgit", version = "0.13" }
crossterm = { version = "0.19", features = [ "serde" ] }
clap = { version = "2.33", default-features = false }
tui = { version = "0.14", default-features = false, features = ['crossterm', 'serde'] }