Skip to content

Commit ca49bbd

Browse files
author
Stephan Dilly
authored
release 0.10 (#252)
1 parent 4907e8b commit ca49bbd

File tree

7 files changed

+13
-7
lines changed

7 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,19 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [0.10.0] - 2020-08-29
99

1010
### Added
1111

1212
- fully **customizable key bindings** (see [KEY_CONFIG.md](KEY_CONFIG.md)) [[@yanganto](https://github.com/yanganto)] ([#109](https://github.com/extrawurst/gitui/issues/109)) ([#57](https://github.com/extrawurst/gitui/issues/57))
1313
- support scrolling in long commit messages [[@cruessler](https://github.com/cruessler)]([#208](https://github.com/extrawurst/gitui/issues/208))
14+
15+
![scrolling](assets/msg-scrolling.gif)
16+
1417
- copy lines from diffs to clipboard [[@cruessler](https://github.com/cruessler)]([#229](https://github.com/extrawurst/gitui/issues/229))
18+
19+
![select-copy](assets/select-copy.gif)
20+
1521
- scrollbar in long diffs ([#204](https://github.com/extrawurst/gitui/issues/204))
1622

1723
![scrollbar](assets/scrollbar.gif)

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,4 +137,4 @@ However, you can customize everything to your liking: See [Themes](THEMES.md).
137137
- It would be nice to come up with a way to have the map view available in a terminal tool
138138

139139
# Key Bindings
140-
You can customize every keybing to your liking: See [Key Config](KEY_CONFIG.md).
140+
The key bindings can be customized: See [Key Config](KEY_CONFIG.md) on how to set them to `vim`-like bindings.

assets/msg-scrolling.gif

219 KB
Loading

assets/select-copy.gif

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

0 commit comments

Comments
 (0)