Skip to content

Commit 05c2e2a

Browse files
author
Stephan Dilly
committed
prepare for release
1 parent de7f48f commit 05c2e2a

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.8.0] - 2020-07-05
10+
911
### Added
1012
- core homebrew [formulae](https://formulae.brew.sh/formula/gitui#default): `brew install gitui` [[@vladimyr](https://github.com/vladimyr)] ([#137](https://github.com/extrawurst/gitui/issues/137))
1113
- show file sizes and delta on binary diffs ([#141](https://github.com/extrawurst/gitui/issues/141))
1214

1315
![](assets/binary_diff.png)
1416
- external editor support for commit messages [[@jonstodle](https://github.com/jonstodle)] ([#46](https://github.com/extrawurst/gitui/issues/46))
1517

18+
![](assets/vi_support.gif)
19+
1620
### Changed
1721
- use terminal blue as default selection background ([#129](https://github.com/extrawurst/gitui/issues/129))
1822
- author column in revlog is now fixed width for better alignment ([#148](https://github.com/extrawurst/gitui/issues/148))

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.7.0"
3+
version = "0.8.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.7" }
23+
asyncgit = { path = "./asyncgit", version = "0.8" }
2424
crossterm = "0.17"
2525
clap = { version = "2.33", default-features = false }
2626
tui = { version = "0.9", default-features = false, features = ['crossterm'] }

assets/vi_support.gif

685 KB
Loading

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.7.0"
3+
version = "0.8.0"
44
authors = ["Stephan Dilly <[email protected]>"]
55
edition = "2018"
66
description = "allow using git2 in a asynchronous context"

0 commit comments

Comments
 (0)