From 5eaafb0267599fbfd27417ad470466ce3cd8d3e9 Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Sun, 11 Apr 2021 22:52:59 +0200 Subject: [PATCH] version bump --- CHANGELOG.md | 2 ++ Cargo.lock | 2 +- Cargo.toml | 2 +- asyncgit/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec4f313b..f7e52b04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.14.0] - 2020-04-11 + ### Added - `[w]` key to toggle between staging/workdir [[@terhechte](https://github.com/terhechte)] ([#595](https://github.com/extrawurst/gitui/issues/595)) - view/checkout remote branches ([#617](https://github.com/extrawurst/gitui/issues/617)) diff --git a/Cargo.lock b/Cargo.lock index 1986dfa0..c7ef4b4c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -43,7 +43,7 @@ dependencies = [ [[package]] name = "asyncgit" -version = "0.13.0" +version = "0.14.0" dependencies = [ "crossbeam-channel", "git2", diff --git a/Cargo.toml b/Cargo.toml index 14bcf067..1e5803c4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ keywords = [ [dependencies] scopetime = { path = "./scopetime", version = "0.1" } -asyncgit = { path = "./asyncgit", version = "0.13" } +asyncgit = { path = "./asyncgit", version = "0.14" } crossterm = { version = "0.19", features = [ "serde" ] } clap = { version = "2.33", default-features = false } tui = { version = "0.14", default-features = false, features = ['crossterm', 'serde'] } diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml index 34b70d79..d66e6346 100644 --- a/asyncgit/Cargo.toml +++ b/asyncgit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asyncgit" -version = "0.13.0" +version = "0.14.0" authors = ["Stephan Dilly "] edition = "2018" description = "allow using git2 in a asynchronous context"