Skip to content

Commit

Permalink
chore: bump version to 0.5.0
Browse files Browse the repository at this point in the history
use forked console repo: https://github.com/ttys3/console

unix term:
add Home and End support for tmux and xrvt

add Control-A (home), Control-E (end) and Control-H (8)
support
  • Loading branch information
ttys3 committed Jan 23, 2021
1 parent 846fec3 commit 5b90675
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 50 deletions.
72 changes: 27 additions & 45 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 8 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-cz"
version = "0.4.4"
version = "0.5.0"
description = "Git conventional commit tools written in Rust"
keywords = ["git", "conventional", "commit", "changelog", "semantic"]
categories = ["development-tools::build-utils"]
Expand All @@ -24,10 +24,10 @@ serde = { version = "1.0.119", features = ["derive"] }
serde_yaml = "0.8.15"
structopt = "0.3.21"
url = "2.2.0"
dialoguer = "0.7.1"
dialoguer = "0.7.2"
thiserror = "1.0.23"
skim = "0.9.3"
console = "0.14.0"
console = "0.15.0"

[build-dependencies]
structopt = "0.3.21"
Expand All @@ -48,5 +48,8 @@ assets = [
["target/completions/git-cz.fish", "/usr/share/fish/completions/", "644"],
]

#[patch.crates-io]
#dialoguer = { path = "../dialoguer" }
[patch.crates-io]
# dialoguer = { path = "../../lib/dialoguer" }
# console = { path = "../../lib/console" }
console = { git = "https://github.com/ttys3/console.git", version = "0.15.0" }
dialoguer = { git = "https://github.com/ttys3/dialoguer.git", version = "0.7.2" }

0 comments on commit 5b90675

Please sign in to comment.