diff --git a/CHANGELOG.md b/CHANGELOG.md index 54c04f73..3ad375eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.13.0] - 2020-03-15 - Happy Birthday GitUI 🥳 + **stage/unstage/discard by line** ![by-line-ops](assets/by-line-ops.gif) diff --git a/Cargo.lock b/Cargo.lock index 811e987d..8af5dc23 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -43,7 +43,7 @@ dependencies = [ [[package]] name = "asyncgit" -version = "0.12.0" +version = "0.13.0" dependencies = [ "crossbeam-channel", "git2", diff --git a/Cargo.toml b/Cargo.toml index a8abde18..73215f0d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,8 +19,8 @@ keywords = [ ] [dependencies] -scopetime = { path = "./scopetime", version = "0.1" } -asyncgit = { path = "./asyncgit", version = "0.12" } +scopetime = { path = "./scopetime" } +asyncgit = { path = "./asyncgit" } crossterm = { version = "0.19", features = [ "serde" ] } clap = { version = "2.33", default-features = false } tui = { version = "0.14", default-features = false, features = ['crossterm', 'serde'] } diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml index d60f5ce0..75e91f43 100644 --- a/asyncgit/Cargo.toml +++ b/asyncgit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asyncgit" -version = "0.12.0" +version = "0.13.0" authors = ["Stephan Dilly "] edition = "2018" description = "allow using git2 in a asynchronous context"