version bump

This commit is contained in:
Stephan Dilly 2020-05-20 12:01:46 +02:00
parent 4379a77e0d
commit cdbed764ed
3 changed files with 6 additions and 6 deletions

4
Cargo.lock generated
View File

@ -29,7 +29,7 @@ checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
[[package]]
name = "asyncgit"
version = "0.2.6"
version = "0.3.0"
dependencies = [
"crossbeam-channel",
"git2",
@ -302,7 +302,7 @@ dependencies = [
[[package]]
name = "gitui"
version = "0.2.6"
version = "0.3.0"
dependencies = [
"asyncgit",
"backtrace",

View File

@ -1,6 +1,6 @@
[package]
name = "gitui"
version = "0.2.6"
version = "0.3.0"
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
description = "blazing fast terminal-ui for git"
edition = "2018"
@ -19,6 +19,8 @@ keywords = [
]
[dependencies]
scopetime = { path = "./scopetime", version = "0.1" }
asyncgit = { path = "./asyncgit", version = "0.3" }
crossterm = "0.17"
tui = { version = "0.9", default-features=false, features = ['crossterm'] }
itertools = "0.9"
@ -32,8 +34,6 @@ bitflags = "1.2"
chrono = "0.4"
backtrace = { version = "0.3" }
ron = "0.5.1"
scopetime = { path = "./scopetime", version = "0.1" }
asyncgit = { path = "./asyncgit", version = "0.2" }
serde = "1.0.110"
[features]

View File

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