mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 09:28:21 +00:00
prepare for v0.20 release
This commit is contained in:
parent
0874f33eb3
commit
12fbfa0946
4 changed files with 10 additions and 8 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
|
@ -7,18 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
**tag annotation support**
|
## [0.20] - 2021-01-22 - Tag Annotations
|
||||||
|
|
||||||
|
**support tag annotations**
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
**revert commit from rev log**
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
**delete tag on remote**
|
**delete tag on remote**
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
**revert commit from rev log**
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- support `core.hooksPath` ([#1044](https://github.com/extrawurst/gitui/issues/1044))
|
- 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))
|
- allow reverting a commit from the commit log ([#927](https://github.com/extrawurst/gitui/issues/927))
|
||||||
|
|
|
||||||
2
Cargo.lock
generated
2
Cargo.lock
generated
|
|
@ -63,7 +63,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "asyncgit"
|
name = "asyncgit"
|
||||||
version = "0.19.0"
|
version = "0.20.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"crossbeam-channel",
|
"crossbeam-channel",
|
||||||
"easy-cast",
|
"easy-cast",
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ keywords = [
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
asyncgit = { path = "./asyncgit", version = "0.19", default-features = false }
|
asyncgit = { path = "./asyncgit", version = "0.20", default-features = false }
|
||||||
backtrace = "0.3"
|
backtrace = "0.3"
|
||||||
bitflags = "1.3"
|
bitflags = "1.3"
|
||||||
bugreport = "0.4"
|
bugreport = "0.4"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "asyncgit"
|
name = "asyncgit"
|
||||||
version = "0.19.0"
|
version = "0.20.0"
|
||||||
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
|
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "allow using git2 in a asynchronous context"
|
description = "allow using git2 in a asynchronous context"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue