prepare for release

This commit is contained in:
Stephan Dilly 2020-07-04 20:35:55 +02:00
parent de7f48f88e
commit 05c2e2ab49
5 changed files with 9 additions and 5 deletions

View file

@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.8.0] - 2020-07-05
### Added
- 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))
- show file sizes and delta on binary diffs ([#141](https://github.com/extrawurst/gitui/issues/141))
@ -13,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
![](assets/binary_diff.png)
- external editor support for commit messages [[@jonstodle](https://github.com/jonstodle)] ([#46](https://github.com/extrawurst/gitui/issues/46))
![](assets/vi_support.gif)
### Changed
- use terminal blue as default selection background ([#129](https://github.com/extrawurst/gitui/issues/129))
- author column in revlog is now fixed width for better alignment ([#148](https://github.com/extrawurst/gitui/issues/148))

4
Cargo.lock generated
View file

@ -68,7 +68,7 @@ checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
[[package]]
name = "asyncgit"
version = "0.7.0"
version = "0.8.0"
dependencies = [
"crossbeam-channel",
"git2",
@ -414,7 +414,7 @@ dependencies = [
[[package]]
name = "gitui"
version = "0.7.0"
version = "0.8.0"
dependencies = [
"anyhow",
"asyncgit",

View file

@ -1,6 +1,6 @@
[package]
name = "gitui"
version = "0.7.0"
version = "0.8.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.7" }
asyncgit = { path = "./asyncgit", version = "0.8" }
crossterm = "0.17"
clap = { version = "2.33", default-features = false }
tui = { version = "0.9", default-features = false, features = ['crossterm'] }

BIN
assets/vi_support.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 685 KiB

View file

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