summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Dilly <dilly.stephan@gmail.com>2021-03-14 12:58:58 +0100
committerStephan Dilly <dilly.stephan@gmail.com>2021-03-14 12:58:58 +0100
commitf232ed81079252c042054c31284cc9a646e3652f (patch)
treedb0d21f0f4dd2e298c917d340e893d40baaf323a
parent70d4c5b1d5a6196f24026e0f2dbefe0a76e80319 (diff)
prepare 0.13 releasev0.13.0
-rw-r--r--CHANGELOG.md1
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml6
3 files changed, 5 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3ad375eb..d6424621 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/Cargo.lock b/Cargo.lock
index 8af5dc23..d74e1e8b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -343,7 +343,7 @@ dependencies = [
[[package]]
name = "gitui"
-version = "0.12.0"
+version = "0.13.0"
dependencies = [
"anyhow",
"asyncgit",
diff --git a/Cargo.toml b/Cargo.toml
index 73215f0d..667b256a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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'] }