mirror of
https://github.com/extrawurst/gitui.git
synced 2024-11-22 11:03:25 +03:00
Prep release 25 (#2082)
This commit is contained in:
parent
fa051eff5a
commit
9f0ef851b2
@ -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
8
Cargo.lock
generated
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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]
|
||||
|
Loading…
Reference in New Issue
Block a user