From f232ed81079252c042054c31284cc9a646e3652f Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Sun, 14 Mar 2021 12:58:58 +0100 Subject: [PATCH] prepare 0.13 release --- CHANGELOG.md | 1 + Cargo.lock | 2 +- Cargo.toml | 6 +++--- 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 "] 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'] }