diff --git a/CHANGELOG.md b/CHANGELOG.md index bf91908f..1e387fb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,18 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -**tag annotation support** +## [0.20] - 2021-01-22 - Tag Annotations + +**support tag annotations** ![tag-annotation](assets/tag-annotation.gif) -**revert commit from rev log** - -![revert-commit](assets/revert-commit.gif) - **delete tag on remote** ![delete-tag-remote](assets/delete-tag-remote.gif) +**revert commit from rev log** + +![revert-commit](assets/revert-commit.gif) + ### Added - support `core.hooksPath` ([#1044](https://github.com/extrawurst/gitui/issues/1044)) - allow reverting a commit from the commit log ([#927](https://github.com/extrawurst/gitui/issues/927)) diff --git a/Cargo.lock b/Cargo.lock index 62ebc3b3..886be6cf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -63,7 +63,7 @@ dependencies = [ [[package]] name = "asyncgit" -version = "0.19.0" +version = "0.20.0" dependencies = [ "crossbeam-channel", "easy-cast", diff --git a/Cargo.toml b/Cargo.toml index 05403933..e4f51830 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ keywords = [ [dependencies] anyhow = "1.0" -asyncgit = { path = "./asyncgit", version = "0.19", default-features = false } +asyncgit = { path = "./asyncgit", version = "0.20", default-features = false } backtrace = "0.3" bitflags = "1.3" bugreport = "0.4" diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml index 71293454..690e4ea3 100644 --- a/asyncgit/Cargo.toml +++ b/asyncgit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asyncgit" -version = "0.19.0" +version = "0.20.0" authors = ["Stephan Dilly "] edition = "2018" description = "allow using git2 in a asynchronous context"