diff --git a/CHANGELOG.md b/CHANGELOG.md index 7613e4fd..50d3cc09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)) diff --git a/Cargo.lock b/Cargo.lock index e64dd282..8d22e90f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index 1e7acb15..4863b830 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitui" -version = "0.3.0" +version = "0.4.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.3" } +asyncgit = { path = "./asyncgit", version = "0.4" } crossterm = "0.17" tui = { version = "0.9", default-features=false, features = ['crossterm'] } itertools = "0.9" diff --git a/README.md b/README.md index 4a96d735..c8288f7e 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml index 01f9bdbf..9e1190d3 100644 --- a/asyncgit/Cargo.toml +++ b/asyncgit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asyncgit" -version = "0.3.0" +version = "0.4.0" authors = ["Stephan Dilly "] edition = "2018" description = "allow using git2 in a asynchronous context"