mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 01:18:21 +00:00
release prep
This commit is contained in:
parent
63d3bf5661
commit
a2e17e0982
5 changed files with 7 additions and 7 deletions
|
|
@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- stashing support ([#3](https://github.com/extrawurst/gitui/issues/3))
|
- stashing support (save,apply,drop) ([#3](https://github.com/extrawurst/gitui/issues/3))
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- log tab refreshes when head changes ([#78](https://github.com/extrawurst/gitui/issues/78))
|
- log tab refreshes when head changes ([#78](https://github.com/extrawurst/gitui/issues/78))
|
||||||
|
|
|
||||||
4
Cargo.lock
generated
4
Cargo.lock
generated
|
|
@ -35,7 +35,7 @@ checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "asyncgit"
|
name = "asyncgit"
|
||||||
version = "0.3.0"
|
version = "0.4.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"crossbeam-channel",
|
"crossbeam-channel",
|
||||||
"git2",
|
"git2",
|
||||||
|
|
@ -299,7 +299,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "gitui"
|
name = "gitui"
|
||||||
version = "0.3.0"
|
version = "0.4.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"asyncgit",
|
"asyncgit",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "gitui"
|
name = "gitui"
|
||||||
version = "0.3.0"
|
version = "0.4.0"
|
||||||
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
|
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
|
||||||
description = "blazing fast terminal-ui for git"
|
description = "blazing fast terminal-ui for git"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
@ -20,7 +20,7 @@ keywords = [
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
scopetime = { path = "./scopetime", version = "0.1" }
|
scopetime = { path = "./scopetime", version = "0.1" }
|
||||||
asyncgit = { path = "./asyncgit", version = "0.3" }
|
asyncgit = { path = "./asyncgit", version = "0.4" }
|
||||||
crossterm = "0.17"
|
crossterm = "0.17"
|
||||||
tui = { version = "0.9", default-features=false, features = ['crossterm'] }
|
tui = { version = "0.9", default-features=false, features = ['crossterm'] }
|
||||||
itertools = "0.9"
|
itertools = "0.9"
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ blazing fast terminal-ui for git written in rust
|
||||||
* context based help (**no** need to remember any hot-key)
|
* context based help (**no** need to remember any hot-key)
|
||||||
* inspect/commit changes (incl. hooks: *commit-msg*/*post-commit*)
|
* inspect/commit changes (incl. hooks: *commit-msg*/*post-commit*)
|
||||||
* (un)stage files/hunks, revert/reset files/hunk
|
* (un)stage files/hunks, revert/reset files/hunk
|
||||||
* stashing
|
* stashing (save, apply, drop)
|
||||||
* browse commit log
|
* browse commit log
|
||||||
* scalable ui layout
|
* scalable ui layout
|
||||||
* async [input polling](assets/perf_compare.jpg) and
|
* async [input polling](assets/perf_compare.jpg) and
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "asyncgit"
|
name = "asyncgit"
|
||||||
version = "0.3.0"
|
version = "0.4.0"
|
||||||
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
|
authors = ["Stephan Dilly <dilly.stephan@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "allow using git2 in a asynchronous context"
|
description = "allow using git2 in a asynchronous context"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue