diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e9f44b9..0664aaf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.7.0] - 2020-06-15 ### Added - Inspect stash commit in detail ([#121](https://github.com/extrawurst/gitui/issues/121)) diff --git a/Cargo.lock b/Cargo.lock index d83dc9a9..27503605 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -35,7 +35,7 @@ checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8" [[package]] name = "asyncgit" -version = "0.6.0" +version = "0.7.0" dependencies = [ "crossbeam-channel", "git2", @@ -310,7 +310,7 @@ dependencies = [ [[package]] name = "gitui" -version = "0.6.0" +version = "0.7.0" dependencies = [ "anyhow", "asyncgit", diff --git a/Cargo.toml b/Cargo.toml index 163fd837..b9604d63 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitui" -version = "0.6.0" +version = "0.7.0" authors = ["Stephan Dilly "] description = "blazing fast terminal-ui for git" edition = "2018" @@ -20,7 +20,7 @@ keywords = [ [dependencies] scopetime = { path = "./scopetime", version = "0.1" } -asyncgit = { path = "./asyncgit", version = "0.6" } +asyncgit = { path = "./asyncgit", version = "0.7" } crossterm = "0.17" clap = { version = "2.33", default-features = false } tui = { version = "0.9", default-features = false, features = ['crossterm'] } diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml index 2457169f..deca102e 100644 --- a/asyncgit/Cargo.toml +++ b/asyncgit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asyncgit" -version = "0.6.0" +version = "0.7.0" authors = ["Stephan Dilly "] edition = "2018" description = "allow using git2 in a asynchronous context"