Prep release 25 (#2082)

This commit is contained in:
extrawurst 2024-02-21 11:27:45 +01:00 committed by GitHub
parent fa051eff5a
commit 9f0ef851b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 11 additions and 11 deletions

View File

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

8
Cargo.lock generated
View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "gitui"
version = "0.24.3"
version = "0.25.0"
authors = ["extrawurst <mail@rusticorn.com>"]
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"

View File

@ -1,6 +1,6 @@
[package]
name = "asyncgit"
version = "0.24.3"
version = "0.25.0"
authors = ["extrawurst <mail@rusticorn.com>"]
edition = "2021"
description = "allow using git2 in a asynchronous context"

View File

@ -1,6 +1,6 @@
[package]
name = "filetreelist"
version = "0.5.0"
version = "0.5.1"
authors = ["extrawurst <mail@rusticorn.com>"]
edition = "2021"
description = "filetree abstraction based on a sorted path list, supports key based navigation events, folding, scrolling and more"

View File

@ -1,6 +1,6 @@
[package]
name = "invalidstring"
version = "0.1.2"
version = "0.1.3"
authors = ["extrawurst <mail@rusticorn.com>"]
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]