release prep

This commit is contained in:
Stephan Dilly 2020-05-25 16:21:53 +02:00
parent 63d3bf5661
commit a2e17e0982
5 changed files with 7 additions and 7 deletions

View file

@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Added
- stashing support ([#3](https://github.com/extrawurst/gitui/issues/3))
- stashing support (save,apply,drop) ([#3](https://github.com/extrawurst/gitui/issues/3))
### Changed
- log tab refreshes when head changes ([#78](https://github.com/extrawurst/gitui/issues/78))

4
Cargo.lock generated
View file

@ -35,7 +35,7 @@ checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
[[package]]
name = "asyncgit"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"crossbeam-channel",
"git2",
@ -299,7 +299,7 @@ dependencies = [
[[package]]
name = "gitui"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"anyhow",
"asyncgit",

View file

@ -1,6 +1,6 @@
[package]
name = "gitui"
version = "0.3.0"
version = "0.4.0"
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
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.3" }
asyncgit = { path = "./asyncgit", version = "0.4" }
crossterm = "0.17"
tui = { version = "0.9", default-features=false, features = ['crossterm'] }
itertools = "0.9"

View file

@ -23,7 +23,7 @@ blazing fast terminal-ui for git written in rust
* context based help (**no** need to remember any hot-key)
* inspect/commit changes (incl. hooks: *commit-msg*/*post-commit*)
* (un)stage files/hunks, revert/reset files/hunk
* stashing
* stashing (save, apply, drop)
* browse commit log
* scalable ui layout
* async [input polling](assets/perf_compare.jpg) and

View file

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