summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Dilly <dilly.stephan@gmail.com>2020-05-18 22:44:09 +0200
committerStephan Dilly <dilly.stephan@gmail.com>2020-05-18 22:44:09 +0200
commitd43a7ad255d053936ad411dac971803006a06857 (patch)
tree3da400af6630c25470fe251921a3f87a85d26a4e
parent6d60f5b478aeca655c67fddea232bc8000b4f430 (diff)
prep new releasev0.2.6
-rw-r--r--CHANGELOG.md1
-rw-r--r--Cargo.lock4
-rw-r--r--Cargo.toml2
-rw-r--r--asyncgit/Cargo.toml2
4 files changed, 5 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a543bcf8..74b67c21 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
+## [0.2.6] - 2020-05-18
### Fixed
- fix crash help in small window size ([#63](https://github.com/extrawurst/gitui/issues/63))
diff --git a/Cargo.lock b/Cargo.lock
index fd8aad04..552fd550 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -29,7 +29,7 @@ checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
[[package]]
name = "asyncgit"
-version = "0.2.5"
+version = "0.2.6"
dependencies = [
"crossbeam-channel",
"git2",
@@ -287,7 +287,7 @@ dependencies = [
[[package]]
name = "gitui"
-version = "0.2.5"
+version = "0.2.6"
dependencies = [
"asyncgit",
"backtrace",
diff --git a/Cargo.toml b/Cargo.toml
index 8611d6d8..cf5ffe53 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "gitui"
-version = "0.2.5"
+version = "0.2.6"
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
description = "blazing fast terminal-ui for git"
edition = "2018"
diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml
index 14d5e7c7..eeab7ad5 100644
--- a/asyncgit/Cargo.toml
+++ b/asyncgit/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "asyncgit"
-version = "0.2.5"
+version = "0.2.6"
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
edition = "2018"
description = "allow using git2 in a asynchronous context"