From d1dcdab288ddc39394e686ee96481cdbcfdefdd4 Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Mon, 11 Oct 2021 11:25:50 +0200 Subject: [PATCH] version bumps --- CHANGELOG.md | 2 +- Cargo.lock | 6 +++--- Cargo.toml | 6 +++--- asyncgit/Cargo.toml | 2 +- filetreelist/Cargo.toml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 22cfeff9..7f4f33d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,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.18] - 2021-10-11 **rebase merge with conflicts** diff --git a/Cargo.lock b/Cargo.lock index 80088a2d..49eb671e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -63,7 +63,7 @@ dependencies = [ [[package]] name = "asyncgit" -version = "0.17.1" +version = "0.18.0" dependencies = [ "crossbeam-channel", "easy-cast", @@ -375,7 +375,7 @@ dependencies = [ [[package]] name = "filetreelist" -version = "0.3.0" +version = "0.4.0" dependencies = [ "pretty_assertions", "scopetime", @@ -485,7 +485,7 @@ dependencies = [ [[package]] name = "gitui" -version = "0.17.1" +version = "0.18.0" dependencies = [ "anyhow", "asyncgit", diff --git a/Cargo.toml b/Cargo.toml index ece34471..293d973d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitui" -version = "0.17.1" +version = "0.18.0" authors = ["Stephan Dilly "] description = "blazing fast terminal-ui for git" edition = "2018" @@ -20,8 +20,8 @@ keywords = [ [dependencies] scopetime = { path = "./scopetime", version = "0.1" } -asyncgit = { path = "./asyncgit", version = "0.17" } -filetreelist = { path = "./filetreelist", version = "0.3" } +asyncgit = { path = "./asyncgit", version = "0.18" } +filetreelist = { path = "./filetreelist", version = "0.4" } crossterm = { version = "0.20", features = [ "serde" ] } clap = { version = "2.33", default-features = false } tui = { version = "0.16", default-features = false, features = ['crossterm', 'serde'] } diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml index 0fd03874..de0172b9 100644 --- a/asyncgit/Cargo.toml +++ b/asyncgit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asyncgit" -version = "0.17.1" +version = "0.18.0" authors = ["Stephan Dilly "] edition = "2018" description = "allow using git2 in a asynchronous context" diff --git a/filetreelist/Cargo.toml b/filetreelist/Cargo.toml index ba891a03..29324481 100644 --- a/filetreelist/Cargo.toml +++ b/filetreelist/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "filetreelist" -version = "0.3.0" +version = "0.4.0" authors = ["Stephan Dilly "] edition = "2018" description = "filetree abstraction based on a sorted path list, supports key based navigation events, folding, scrolling and more"