mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 09:28:21 +00:00
prep release
This commit is contained in:
parent
fb37cec2f0
commit
01678d2d4b
4 changed files with 7 additions and 5 deletions
|
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
## [0.15.0] - 2020-04-27
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- blame a file [[@cruessler](https://github.com/cruessler)] ([#484](https://github.com/extrawurst/gitui/issues/484))
|
- blame a file [[@cruessler](https://github.com/cruessler)] ([#484](https://github.com/extrawurst/gitui/issues/484))
|
||||||
- support commit.template [[@wandernauta](https://github.com/wandernauta)] ([#546](https://github.com/extrawurst/gitui/issues/546))
|
- support commit.template [[@wandernauta](https://github.com/wandernauta)] ([#546](https://github.com/extrawurst/gitui/issues/546))
|
||||||
|
|
|
||||||
4
Cargo.lock
generated
4
Cargo.lock
generated
|
|
@ -43,7 +43,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "asyncgit"
|
name = "asyncgit"
|
||||||
version = "0.14.0"
|
version = "0.15.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"crossbeam-channel",
|
"crossbeam-channel",
|
||||||
"easy-cast",
|
"easy-cast",
|
||||||
|
|
@ -351,7 +351,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "gitui"
|
name = "gitui"
|
||||||
version = "0.14.0"
|
version = "0.15.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"asyncgit",
|
"asyncgit",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "gitui"
|
name = "gitui"
|
||||||
version = "0.14.0"
|
version = "0.15.0"
|
||||||
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
|
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
|
||||||
description = "blazing fast terminal-ui for git"
|
description = "blazing fast terminal-ui for git"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
@ -20,7 +20,7 @@ keywords = [
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
scopetime = { path = "./scopetime", version = "0.1" }
|
scopetime = { path = "./scopetime", version = "0.1" }
|
||||||
asyncgit = { path = "./asyncgit", version = "0.14" }
|
asyncgit = { path = "./asyncgit", version = "0.15" }
|
||||||
crossterm = { version = "0.19", features = [ "serde" ] }
|
crossterm = { version = "0.19", features = [ "serde" ] }
|
||||||
clap = { version = "2.33", default-features = false }
|
clap = { version = "2.33", default-features = false }
|
||||||
tui = { version = "0.14", default-features = false, features = ['crossterm', 'serde'] }
|
tui = { version = "0.14", default-features = false, features = ['crossterm', 'serde'] }
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "asyncgit"
|
name = "asyncgit"
|
||||||
version = "0.14.0"
|
version = "0.15.0"
|
||||||
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
|
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "allow using git2 in a asynchronous context"
|
description = "allow using git2 in a asynchronous context"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue