From 9f0ef851b28eaaec9cfcbd405f7a723633d58a98 Mon Sep 17 00:00:00 2001 From: extrawurst <776816+extrawurst@users.noreply.github.com> Date: Wed, 21 Feb 2024 11:27:45 +0100 Subject: [PATCH] Prep release 25 (#2082) --- CHANGELOG.md | 2 ++ Cargo.lock | 8 ++++---- Cargo.toml | 4 ++-- asyncgit/Cargo.toml | 2 +- filetreelist/Cargo.toml | 2 +- invalidstring/Cargo.toml | 4 +--- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a0646d2..7a81e05d 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.25.0] - 2024-02-21 + ** multiline text editor ** ![multiline editor](assets/multiline-texteditor.gif) diff --git a/Cargo.lock b/Cargo.lock index 56b009bd..60f4cb7a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -115,7 +115,7 @@ checksum = "5ad32ce52e4161730f7098c077cd2ed6229b5804ccf99e5366be1ab72a98b4e1" [[package]] name = "asyncgit" -version = "0.24.3" +version = "0.25.0" dependencies = [ "bitflags 2.4.2", "crossbeam-channel", @@ -509,7 +509,7 @@ dependencies = [ [[package]] name = "filetreelist" -version = "0.5.0" +version = "0.5.1" dependencies = [ "pretty_assertions", "thiserror", @@ -722,7 +722,7 @@ dependencies = [ [[package]] name = "gitui" -version = "0.24.3" +version = "0.25.0" dependencies = [ "anyhow", "asyncgit", @@ -867,7 +867,7 @@ dependencies = [ [[package]] name = "invalidstring" -version = "0.1.2" +version = "0.1.3" [[package]] name = "itertools" diff --git a/Cargo.toml b/Cargo.toml index 8f209405..beed6f0f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitui" -version = "0.24.3" +version = "0.25.0" authors = ["extrawurst "] description = "blazing fast terminal-ui for git" edition = "2021" @@ -15,7 +15,7 @@ keywords = ["git", "gui", "cli", "terminal", "ui"] [dependencies] anyhow = "1.0" -asyncgit = { path = "./asyncgit", version = "0.24", default-features = false } +asyncgit = { path = "./asyncgit", version = "0.25", default-features = false } backtrace = "0.3" bitflags = "2.4" bugreport = "0.5" diff --git a/asyncgit/Cargo.toml b/asyncgit/Cargo.toml index e2253f7a..deb9beae 100644 --- a/asyncgit/Cargo.toml +++ b/asyncgit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "asyncgit" -version = "0.24.3" +version = "0.25.0" authors = ["extrawurst "] edition = "2021" description = "allow using git2 in a asynchronous context" diff --git a/filetreelist/Cargo.toml b/filetreelist/Cargo.toml index 65c32fcc..1457580e 100644 --- a/filetreelist/Cargo.toml +++ b/filetreelist/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "filetreelist" -version = "0.5.0" +version = "0.5.1" authors = ["extrawurst "] edition = "2021" description = "filetree abstraction based on a sorted path list, supports key based navigation events, folding, scrolling and more" diff --git a/invalidstring/Cargo.toml b/invalidstring/Cargo.toml index 38c76d8c..8f9f735e 100644 --- a/invalidstring/Cargo.toml +++ b/invalidstring/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "invalidstring" -version = "0.1.2" +version = "0.1.3" authors = ["extrawurst "] edition = "2021" description = "just for testing invalid string data" @@ -10,5 +10,3 @@ readme = "README.md" license = "MIT" categories = ["development-tools", "development-tools::testing", "encoding"] keywords = ["string"] - -[dependencies]