Skip to content

Commit 33ac5b9

Browse files
committed
prep for release
1 parent 9a7c219 commit 33ac5b9

File tree

5 files changed

+17
-25
lines changed

5 files changed

+17
-25
lines changed

CHANGELOG.md

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

88
## Unreleased
99

10+
## [0.24.0] - 2022-08-27
11+
1012
**search commits**
1113

1214
![commit-search](assets/log-search.gif)
@@ -24,7 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2426
* Future additions of colors etc. will not break existing themes anymore
2527

2628
### Added
27-
* search commits by files in diff or commit message ([#1791](https://github.com/extrawurst/gitui/issues/1791))
29+
* search commits by message, author or files in diff ([#1791](https://github.com/extrawurst/gitui/issues/1791))
2830
* support 'n'/'p' key to move to the next/prev hunk in diff component [[@hamflx](https://github.com/hamflx)] ([#1523](https://github.com/extrawurst/gitui/issues/1523))
2931
* simplify theme overrides [[@cruessler](https://github.com/cruessler)] ([#1367](https://github.com/extrawurst/gitui/issues/1367))
3032
* support for sign-off of commits [[@domtac](https://github.com/domtac)]([#1757](https://github.com/extrawurst/gitui/issues/1757))

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: 12 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -11,26 +11,20 @@ repository = "https://github.com/extrawurst/gitui"
1111
readme = "README.md"
1212
license = "MIT"
1313
categories = ["command-line-utilities"]
14-
keywords = [
15-
"git",
16-
"gui",
17-
"cli",
18-
"terminal",
19-
"ui",
20-
]
14+
keywords = ["git", "gui", "cli", "terminal", "ui"]
2115

2216
[dependencies]
2317
anyhow = "1.0"
24-
asyncgit = { path = "./asyncgit", version = "0.23", default-features = false }
18+
asyncgit = { path = "./asyncgit", version = "0.24", default-features = false }
2519
backtrace = "0.3"
2620
bitflags = "1.3"
2721
bugreport = "0.5"
2822
bwrap = { version = "1.3.0", features = ["use_std"] }
2923
bytesize = { version = "1.3", default-features = false }
30-
chrono = { version = "0.4", default-features = false, features = [ "clock" ] }
31-
clap = { version = "4.1", features = [ "env", "cargo" ] }
24+
chrono = { version = "0.4", default-features = false, features = ["clock"] }
25+
clap = { version = "4.1", features = ["env", "cargo"] }
3226
crossbeam-channel = "0.5"
33-
crossterm = { version = "0.26.1", features = [ "serde" ] }
27+
crossterm = { version = "0.26.1", features = ["serde"] }
3428
dirs = "5.0"
3529
easy-cast = "0.5"
3630
filetreelist = { path = "./filetreelist", version = "0.5" }
@@ -40,7 +34,7 @@ indexmap = "1.9"
4034
itertools = "0.11"
4135
log = "0.4"
4236
notify = "5.1"
43-
notify-debouncer-mini = "0.2"
37+
notify-debouncer-mini = "0.2"
4438
once_cell = "1"
4539
ratatui = { version = "0.21", default-features = false, features = ['crossterm', 'serde'] }
4640
rayon-core = "1.11"
@@ -69,25 +63,21 @@ tempfile = "3.4"
6963
maintenance = { status = "actively-developed" }
7064

7165
[features]
72-
default =["ghemoji", "regex-fancy", "trace-libgit", "vendor-openssl"]
73-
ghemoji =["gh-emoji"]
66+
default = ["ghemoji", "regex-fancy", "trace-libgit", "vendor-openssl"]
67+
ghemoji = ["gh-emoji"]
7468
# regex-* features are mutually exclusive.
7569
regex-fancy = ["syntect/regex-fancy"]
7670
regex-onig = ["syntect/regex-onig"]
77-
timing =["scopetime/enabled"]
78-
trace-libgit =["asyncgit/trace-libgit"]
71+
timing = ["scopetime/enabled"]
72+
trace-libgit = ["asyncgit/trace-libgit"]
7973
vendor-openssl = ["asyncgit/vendor-openssl"]
8074

8175
[workspace]
82-
members =[
83-
"asyncgit",
84-
"filetreelist",
85-
"scopetime",
86-
]
76+
members = ["asyncgit", "filetreelist", "scopetime"]
8777

8878
[profile.release]
8979
lto = true
90-
opt-level = 'z' # Optimize for size.
80+
opt-level = 'z' # Optimize for size.
9181
codegen-units = 1
9282

9383
# make debug build as fast as release

assets/log-search.gif

247 KB
Loading

asyncgit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "asyncgit"
3-
version = "0.23.0"
3+
version = "0.24.0"
44
authors = ["extrawurst <[email protected]>"]
55
edition = "2021"
66
description = "allow using git2 in a asynchronous context"

0 commit comments

Comments
 (0)