diff --git a/CHANGELOG.md b/CHANGELOG.md index 46ed1151..671a50b7 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.15.0] - 2020-04-27 + ### Added - blame a file [[@cruessler](https://github.com/cruessler)] ([#484](https://github.com/extrawurst/gitui/issues/484)) - support commit.template [[@wandernauta](https://github.com/wandernauta)] ([#546](https://github.com/extrawurst/gitui/issues/546)) diff --git a/Cargo.lock b/Cargo.lock index a5f31868..4cc57256 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -43,7 +43,7 @@ dependencies = [ [[package]] name = "asyncgit" -version = "0.14.0" +version = "0.15.0" dependencies = [ "crossbeam-channel", "easy-cast", @@ -351,7 +351,7 @@ dependencies = [ [[package]] name = "gitui" -version = "0.14.0" +version = "0.15.0" dependencies = [ "anyhow", "asyncgit", diff --git a/Cargo.toml b/Cargo.toml index 47ab8d53..ab2e9bbb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitui" -version = "0.14.0" +version = "0.15.0" authors = ["Stephan Dilly "] description = "blazing fast terminal-ui for git" edition = "2018" @@ -20,7 +20,7 @@ keywords = [ [dependencies] scopetime = { path = "./scopetime", version = "0.1" } -asyncgit = { path = "./asyncgit", version = "0.14" } +asyncgit = { path = "./asyncgit", version = "0.15" } 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 6d59fd66..a3240c21 100644 --- a/asyncgit/Cargo.toml +++ b/asyncgit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asyncgit" -version = "0.14.0" +version = "0.15.0" authors = ["Stephan Dilly "] edition = "2018" description = "allow using git2 in a asynchronous context"