From 196fe4ab43e17437a784d727b2acddd46a48d229 Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Sun, 20 Dec 2020 16:55:49 +0100 Subject: [PATCH] version bumps --- CHANGELOG.md | 4 +++- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- asyncgit/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e578144..cb20be49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,9 @@ 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.11.0] - 2020-12-20 ### Added - added windows scoop recipe ([#164](https://github.com/extrawurst/gitui/issues/164)) diff --git a/Cargo.lock b/Cargo.lock index 15245dc6..d2c40c4e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -43,7 +43,7 @@ dependencies = [ [[package]] name = "asyncgit" -version = "0.10.0" +version = "0.11.0" dependencies = [ "crossbeam-channel", "git2", @@ -331,7 +331,7 @@ dependencies = [ [[package]] name = "gitui" -version = "0.10.1" +version = "0.11.0" dependencies = [ "anyhow", "asyncgit", diff --git a/Cargo.toml b/Cargo.toml index 9a1c1ddb..22ece8b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitui" -version = "0.10.1" +version = "0.11.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.10" } +asyncgit = { path = "./asyncgit", version = "0.11" } crossterm = { version = "0.18", features = [ "serde" ] } clap = { version = "2.33", default-features = false } tui = { version = "0.13", default-features = false, features = ['crossterm', 'serde'] } diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml index 75f06b3b..46594fa0 100644 --- a/asyncgit/Cargo.toml +++ b/asyncgit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asyncgit" -version = "0.10.0" +version = "0.11.0" authors = ["Stephan Dilly "] edition = "2018" description = "allow using git2 in a asynchronous context"