Skip to content

Commit 98e130f

Browse files
committed
release prep
1 parent d47f29e commit 98e130f

File tree

6 files changed

+25
-22
lines changed

6 files changed

+25
-22
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## [0.28.1] - 2026-03-21
11+
1012
### Changed
13+
* support proper pre-push hook ([#2809](https://github.com/gitui-org/gitui/issues/2809))
1114
* improve `gitui --version` message [[@hlsxx](https://github.com/hlsxx)] ([#2838](https://github.com/gitui-org/gitui/issues/2838))
1215
* rust msrv bumped to `1.88`
1316

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ build = "build.rs"
1616

1717
[workspace]
1818
members = [
19-
"asyncgit",
20-
"filetreelist",
21-
"git2-hooks",
22-
"git2-testing",
23-
"scopetime",
19+
"asyncgit",
20+
"filetreelist",
21+
"git2-hooks",
22+
"git2-testing",
23+
"scopetime",
2424
]
2525

2626
[features]
@@ -35,7 +35,7 @@ vendor-openssl = ["asyncgit/vendor-openssl"]
3535

3636
[dependencies]
3737
anyhow = "1.0"
38-
asyncgit = { path = "./asyncgit", version = "0.28.0", default-features = false }
38+
asyncgit = { path = "./asyncgit", version = "0.29.0", default-features = false }
3939
backtrace = "0.3"
4040
base64 = "0.22"
4141
bitflags = "2.10"
@@ -48,7 +48,7 @@ crossbeam-channel = "0.5"
4848
crossterm = { version = "0.28", features = ["serde"] }
4949
dirs = "6.0"
5050
easy-cast = "0.5"
51-
filetreelist = { path = "./filetreelist", version = "0.5" }
51+
filetreelist = { path = "./filetreelist", version = ">=0.6" }
5252
fuzzy-matcher = "0.3"
5353
gh-emoji = { version = "1.0", optional = true }
5454
indexmap = "2"
@@ -102,7 +102,7 @@ maintenance = { status = "actively-developed" }
102102
opt-level = 3
103103

104104
[profile.release]
105-
opt-level = "z" # Optimize for size.
105+
opt-level = "z" # Optimize for size.
106106
strip = "debuginfo"
107107
lto = true
108108
codegen-units = 1

asyncgit/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,9 @@ homepage = "https://github.com/gitui-org/gitui"
88
repository = "https://github.com/gitui-org/gitui"
99
readme = "README.md"
1010
license = "MIT"
11-
categories = ["concurrency", "asynchronous"]
11+
categories = ["asynchronous", "concurrency"]
1212
keywords = ["git"]
1313

14-
[features]
15-
default = ["trace-libgit"]
16-
trace-libgit = []
17-
vendor-openssl = ["openssl-sys"]
18-
1914
[dependencies]
2015
bitflags = "2"
2116
crossbeam-channel = "0.5"
@@ -25,16 +20,16 @@ fuzzy-matcher = "0.3"
2520
git2 = "0.20"
2621
git2-hooks = { path = "../git2-hooks", version = ">=0.6" }
2722
gix = { version = "0.78.0", default-features = false, features = [
28-
"max-performance",
29-
"revision",
30-
"mailmap",
31-
"status",
23+
"mailmap",
24+
"max-performance",
25+
"revision",
26+
"status",
3227
] }
3328
log = "0.4"
3429
# git2 = { path = "../../extern/git2-rs", features = ["vendored-openssl"]}
3530
# git2 = { git="https://github.com/extrawurst/git2-rs.git", rev="fc13dcc", features = ["vendored-openssl"]}
3631
# pinning to vendored openssl, using the git2 feature this gets lost with new resolver
37-
openssl-sys = { version = '0.9', features = ["vendored"], optional = true }
32+
openssl-sys = { version = "0.9", features = ["vendored"], optional = true }
3833
rayon = "1.11"
3934
rayon-core = "1.13"
4035
scopetime = { path = "../scopetime", version = "0.1" }
@@ -50,3 +45,8 @@ invalidstring = { path = "../invalidstring", version = "0.1" }
5045
pretty_assertions = "1.4"
5146
serial_test = "3.3"
5247
tempfile = "3"
48+
49+
[features]
50+
default = ["trace-libgit"]
51+
trace-libgit = []
52+
vendor-openssl = ["openssl-sys"]

filetreelist/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "filetreelist"
3-
version = "0.5.3"
3+
version = "0.6.0"
44
authors = ["extrawurst <mail@rusticorn.com>"]
55
edition = "2021"
66
description = "filetree abstraction based on a sorted path list, supports key based navigation events, folding, scrolling and more"

git2-hooks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "git2-hooks"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
authors = ["extrawurst <mail@rusticorn.com>"]
55
edition = "2021"
66
description = "adds git hooks support based on git2-rs"

0 commit comments

Comments
 (0)