mirror of
https://github.com/extrawurst/gitui.git
synced 2024-11-22 02:12:58 +03:00
prep for release
This commit is contained in:
parent
9a7c2199a7
commit
33ac5b97ae
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
|
||||
## Unreleased
|
||||
|
||||
## [0.24.0] - 2022-08-27
|
||||
|
||||
**search commits**
|
||||
|
||||
![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
|
||||
|
||||
### 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))
|
||||
* 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))
|
||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -67,7 +67,7 @@ checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
|
||||
|
||||
[[package]]
|
||||
name = "asyncgit"
|
||||
version = "0.23.0"
|
||||
version = "0.24.0"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"crossbeam-channel",
|
||||
|
16
Cargo.toml
16
Cargo.toml
@ -11,17 +11,11 @@ repository = "https://github.com/extrawurst/gitui"
|
||||
readme = "README.md"
|
||||
license = "MIT"
|
||||
categories = ["command-line-utilities"]
|
||||
keywords = [
|
||||
"git",
|
||||
"gui",
|
||||
"cli",
|
||||
"terminal",
|
||||
"ui",
|
||||
]
|
||||
keywords = ["git", "gui", "cli", "terminal", "ui"]
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0"
|
||||
asyncgit = { path = "./asyncgit", version = "0.23", default-features = false }
|
||||
asyncgit = { path = "./asyncgit", version = "0.24", default-features = false }
|
||||
backtrace = "0.3"
|
||||
bitflags = "1.3"
|
||||
bugreport = "0.5"
|
||||
@ -79,11 +73,7 @@ trace-libgit =["asyncgit/trace-libgit"]
|
||||
vendor-openssl = ["asyncgit/vendor-openssl"]
|
||||
|
||||
[workspace]
|
||||
members =[
|
||||
"asyncgit",
|
||||
"filetreelist",
|
||||
"scopetime",
|
||||
]
|
||||
members = ["asyncgit", "filetreelist", "scopetime"]
|
||||
|
||||
[profile.release]
|
||||
lto = true
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 2.5 MiB After Width: | Height: | Size: 2.7 MiB |
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "asyncgit"
|
||||
version = "0.23.0"
|
||||
version = "0.24.0"
|
||||
authors = ["extrawurst <mail@rusticorn.com>"]
|
||||
edition = "2021"
|
||||
description = "allow using git2 in a asynchronous context"
|
||||
|
Loading…
Reference in New Issue
Block a user