prep for release

This commit is contained in:
extrawurst 2023-08-27 15:30:15 +02:00
parent 9a7c2199a7
commit 33ac5b97ae
5 changed files with 17 additions and 25 deletions

View File

@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## [0.24.0] - 2022-08-27
**search commits** **search commits**
![commit-search](assets/log-search.gif) ![commit-search](assets/log-search.gif)
@ -24,7 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Future additions of colors etc. will not break existing themes anymore * Future additions of colors etc. will not break existing themes anymore
### Added ### Added
* search commits by files in diff or commit message ([#1791](https://github.com/extrawurst/gitui/issues/1791)) * search commits by message, author or files in diff ([#1791](https://github.com/extrawurst/gitui/issues/1791))
* 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)) * 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))
* simplify theme overrides [[@cruessler](https://github.com/cruessler)] ([#1367](https://github.com/extrawurst/gitui/issues/1367)) * simplify theme overrides [[@cruessler](https://github.com/cruessler)] ([#1367](https://github.com/extrawurst/gitui/issues/1367))
* support for sign-off of commits [[@domtac](https://github.com/domtac)]([#1757](https://github.com/extrawurst/gitui/issues/1757)) * support for sign-off of commits [[@domtac](https://github.com/domtac)]([#1757](https://github.com/extrawurst/gitui/issues/1757))

2
Cargo.lock generated
View File

@ -67,7 +67,7 @@ checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
[[package]] [[package]]
name = "asyncgit" name = "asyncgit"
version = "0.23.0" version = "0.24.0"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"crossbeam-channel", "crossbeam-channel",

View File

@ -11,26 +11,20 @@ repository = "https://github.com/extrawurst/gitui"
readme = "README.md" readme = "README.md"
license = "MIT" license = "MIT"
categories = ["command-line-utilities"] categories = ["command-line-utilities"]
keywords = [ keywords = ["git", "gui", "cli", "terminal", "ui"]
"git",
"gui",
"cli",
"terminal",
"ui",
]
[dependencies] [dependencies]
anyhow = "1.0" anyhow = "1.0"
asyncgit = { path = "./asyncgit", version = "0.23", default-features = false } asyncgit = { path = "./asyncgit", version = "0.24", default-features = false }
backtrace = "0.3" backtrace = "0.3"
bitflags = "1.3" bitflags = "1.3"
bugreport = "0.5" bugreport = "0.5"
bwrap = { version = "1.3.0", features = ["use_std"] } bwrap = { version = "1.3.0", features = ["use_std"] }
bytesize = { version = "1.3", default-features = false } bytesize = { version = "1.3", default-features = false }
chrono = { version = "0.4", default-features = false, features = [ "clock" ] } chrono = { version = "0.4", default-features = false, features = ["clock"] }
clap = { version = "4.1", features = [ "env", "cargo" ] } clap = { version = "4.1", features = ["env", "cargo"] }
crossbeam-channel = "0.5" crossbeam-channel = "0.5"
crossterm = { version = "0.26.1", features = [ "serde" ] } crossterm = { version = "0.26.1", features = ["serde"] }
dirs = "5.0" dirs = "5.0"
easy-cast = "0.5" easy-cast = "0.5"
filetreelist = { path = "./filetreelist", version = "0.5" } filetreelist = { path = "./filetreelist", version = "0.5" }
@ -40,7 +34,7 @@ indexmap = "1.9"
itertools = "0.11" itertools = "0.11"
log = "0.4" log = "0.4"
notify = "5.1" notify = "5.1"
notify-debouncer-mini = "0.2" notify-debouncer-mini = "0.2"
once_cell = "1" once_cell = "1"
ratatui = { version = "0.21", default-features = false, features = ['crossterm', 'serde'] } ratatui = { version = "0.21", default-features = false, features = ['crossterm', 'serde'] }
rayon-core = "1.11" rayon-core = "1.11"
@ -69,25 +63,21 @@ tempfile = "3.4"
maintenance = { status = "actively-developed" } maintenance = { status = "actively-developed" }
[features] [features]
default =["ghemoji", "regex-fancy", "trace-libgit", "vendor-openssl"] default = ["ghemoji", "regex-fancy", "trace-libgit", "vendor-openssl"]
ghemoji =["gh-emoji"] ghemoji = ["gh-emoji"]
# regex-* features are mutually exclusive. # regex-* features are mutually exclusive.
regex-fancy = ["syntect/regex-fancy"] regex-fancy = ["syntect/regex-fancy"]
regex-onig = ["syntect/regex-onig"] regex-onig = ["syntect/regex-onig"]
timing =["scopetime/enabled"] timing = ["scopetime/enabled"]
trace-libgit =["asyncgit/trace-libgit"] trace-libgit = ["asyncgit/trace-libgit"]
vendor-openssl = ["asyncgit/vendor-openssl"] vendor-openssl = ["asyncgit/vendor-openssl"]
[workspace] [workspace]
members =[ members = ["asyncgit", "filetreelist", "scopetime"]
"asyncgit",
"filetreelist",
"scopetime",
]
[profile.release] [profile.release]
lto = true lto = true
opt-level = 'z' # Optimize for size. opt-level = 'z' # Optimize for size.
codegen-units = 1 codegen-units = 1
# make debug build as fast as release # make debug build as fast as release

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 MiB

After

Width:  |  Height:  |  Size: 2.7 MiB

View File

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