diff --git a/Cargo.lock b/Cargo.lock index 484284fe..b69663df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -63,7 +63,7 @@ dependencies = [ [[package]] name = "asyncgit" -version = "0.17.0" +version = "0.17.1" dependencies = [ "crossbeam-channel", "easy-cast", @@ -375,7 +375,7 @@ dependencies = [ [[package]] name = "filetreelist" -version = "0.2.0" +version = "0.3.0" dependencies = [ "pretty_assertions", "scopetime", @@ -485,7 +485,7 @@ dependencies = [ [[package]] name = "gitui" -version = "0.17.0" +version = "0.17.1" dependencies = [ "anyhow", "asyncgit", diff --git a/Cargo.toml b/Cargo.toml index e3c5e0a1..77e2784e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitui" -version = "0.17.0" +version = "0.17.1" authors = ["Stephan Dilly "] description = "blazing fast terminal-ui for git" edition = "2018" @@ -21,7 +21,7 @@ keywords = [ [dependencies] scopetime = { path = "./scopetime", version = "0.1" } asyncgit = { path = "./asyncgit", version = "0.17" } -filetreelist = { path = "./filetreelist", version = "0.2" } +filetreelist = { path = "./filetreelist", version = "0.3" } crossterm = { version = "0.20", features = [ "serde" ] } clap = { version = "2.33", default-features = false } tui = { version = "0.16", default-features = false, features = ['crossterm', 'serde'] } diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml index 00b0ee59..7f5a35c4 100644 --- a/asyncgit/Cargo.toml +++ b/asyncgit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asyncgit" -version = "0.17.0" +version = "0.17.1" authors = ["Stephan Dilly "] edition = "2018" description = "allow using git2 in a asynchronous context" diff --git a/filetreelist/Cargo.toml b/filetreelist/Cargo.toml index a5157cae..7b65967b 100644 --- a/filetreelist/Cargo.toml +++ b/filetreelist/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "filetreelist" -version = "0.2.0" +version = "0.3.0" authors = ["Stephan Dilly "] edition = "2018" description = "filetree abstraction based on a sorted path list, supports key based navigation events, folding, scrolling and more"