prepare for v0.20 release

This commit is contained in:
Stephan Dilly 2022-01-22 01:27:20 +01:00
parent 0874f33eb3
commit 12fbfa0946
4 changed files with 10 additions and 8 deletions

View File

@ -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))

2
Cargo.lock generated
View File

@ -63,7 +63,7 @@ dependencies = [
[[package]]
name = "asyncgit"
version = "0.19.0"
version = "0.20.0"
dependencies = [
"crossbeam-channel",
"easy-cast",

View File

@ -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"

View File

@ -1,6 +1,6 @@
[package]
name = "asyncgit"
version = "0.19.0"
version = "0.20.0"
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
edition = "2018"
description = "allow using git2 in a asynchronous context"