Skip to content

Commit a2e17e0

Browse files
author
Stephan Dilly
committed
release prep
1 parent 63d3bf5 commit a2e17e0

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
## [Unreleased]
88

99
### Added
10-
- stashing support ([#3](https://github.com/extrawurst/gitui/issues/3))
10+
- stashing support (save,apply,drop) ([#3](https://github.com/extrawurst/gitui/issues/3))
1111

1212
### Changed
1313
- log tab refreshes when head changes ([#78](https://github.com/extrawurst/gitui/issues/78))

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gitui"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Stephan Dilly <[email protected]>"]
55
description = "blazing fast terminal-ui for git"
66
edition = "2018"
@@ -20,7 +20,7 @@ keywords = [
2020

2121
[dependencies]
2222
scopetime = { path = "./scopetime", version = "0.1" }
23-
asyncgit = { path = "./asyncgit", version = "0.3" }
23+
asyncgit = { path = "./asyncgit", version = "0.4" }
2424
crossterm = "0.17"
2525
tui = { version = "0.9", default-features=false, features = ['crossterm'] }
2626
itertools = "0.9"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ blazing fast terminal-ui for git written in rust
2323
* context based help (**no** need to remember any hot-key)
2424
* inspect/commit changes (incl. hooks: *commit-msg*/*post-commit*)
2525
* (un)stage files/hunks, revert/reset files/hunk
26-
* stashing
26+
* stashing (save, apply, drop)
2727
* browse commit log
2828
* scalable ui layout
2929
* async [input polling](assets/perf_compare.jpg) and

asyncgit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "asyncgit"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Stephan Dilly <[email protected]>"]
55
edition = "2018"
66
description = "allow using git2 in a asynchronous context"

0 commit comments

Comments
 (0)