From cd639b29c095c26d8e4090a0c0849c8288b0e314 Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Wed, 8 Dec 2021 23:24:01 +0100 Subject: [PATCH] release 0.19 (#1033) --- CHANGELOG.md | 2 ++ Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- asyncgit/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad231d8d..39fae0ad 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.19] - 2021-12-08 - Bare Repo Support + **finder highlighting matches** ![fuzzy-find](assets/fuzzy-find-matches.gif) diff --git a/Cargo.lock b/Cargo.lock index ac2d92be..93b31451 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -63,7 +63,7 @@ dependencies = [ [[package]] name = "asyncgit" -version = "0.18.0" +version = "0.19.0" dependencies = [ "crossbeam-channel", "easy-cast", @@ -497,7 +497,7 @@ dependencies = [ [[package]] name = "gitui" -version = "0.18.0" +version = "0.19.0" dependencies = [ "anyhow", "asyncgit", diff --git a/Cargo.toml b/Cargo.toml index fb7e870d..1bb57e3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitui" -version = "0.18.0" +version = "0.19.0" authors = ["Stephan Dilly "] description = "blazing fast terminal-ui for git" edition = "2018" @@ -21,7 +21,7 @@ keywords = [ [dependencies] anyhow = "1.0" -asyncgit = { path = "./asyncgit", version = "0.18", default-features = false } +asyncgit = { path = "./asyncgit", version = "0.19", default-features = false } backtrace = "0.3" bitflags = "1.3" bugreport = "0.4" diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml index 3dd0b379..48ba2235 100644 --- a/asyncgit/Cargo.toml +++ b/asyncgit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asyncgit" -version = "0.18.0" +version = "0.19.0" authors = ["Stephan Dilly "] edition = "2018" description = "allow using git2 in a asynchronous context"