release 0.19 (#1033)

This commit is contained in:
Stephan Dilly 2021-12-08 23:24:01 +01:00 committed by GitHub
parent eddc703fb8
commit cd639b29c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 5 deletions

View File

@ -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)

4
Cargo.lock generated
View File

@ -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",

View File

@ -1,6 +1,6 @@
[package]
name = "gitui"
version = "0.18.0"
version = "0.19.0"
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
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"

View File

@ -1,6 +1,6 @@
[package]
name = "asyncgit"
version = "0.18.0"
version = "0.19.0"
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
edition = "2018"
description = "allow using git2 in a asynchronous context"