From cdbed764ed1a01f97b33c5e81f5928cc811e6d29 Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Wed, 20 May 2020 12:01:46 +0200 Subject: [PATCH] version bump --- Cargo.lock | 4 ++-- Cargo.toml | 6 +++--- asyncgit/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6eb93b17..4fb0e820 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index 354cff97..c6dd64ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitui" -version = "0.2.6" +version = "0.3.0" authors = ["Stephan Dilly "] 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] diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml index eeab7ad5..c4cc637d 100644 --- a/asyncgit/Cargo.toml +++ b/asyncgit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asyncgit" -version = "0.2.6" +version = "0.3.0" authors = ["Stephan Dilly "] edition = "2018" description = "allow using git2 in a asynchronous context"