Skip to content

Commit 56efd64

Browse files
committed
build: bump version to 0.7.2
fixup publish problem: ```shell ❯ cargo publish --dry-run Updating crates.io index Packaging git-cz v0.7.1 (/home/ttys3/repo/rust/git-cz) error: failed to prepare local package for uploading Caused by: failed to select a version for `dialoguer`. ... required by package `git-cz v0.7.1 (/home/ttys3/repo/rust/git-cz)` versions that meet the requirements `^0.8.0` are: 0.8.0 the package `git-cz` depends on `dialoguer`, with features: `fuzzy-select` but `dialoguer` does not have these features. failed to select a version for `dialoguer` which could resolve this conflict ```
1 parent 9f29606 commit 56efd64

2 files changed

Lines changed: 9 additions & 7 deletions

File tree

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "git-cz"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
description = "Git conventional commit tools written in Rust"
55
keywords = ["git", "conventional", "commit", "changelog", "semantic"]
66
categories = ["development-tools::build-utils"]
@@ -30,7 +30,8 @@ structopt = "0.3.21"
3030
url = "2.2.1"
3131
thiserror = "1.0.24"
3232
console = "0.14.1"
33-
dialoguer = { version = "0.8.0", features = [ "fuzzy-select" ] }
33+
#dialoguer = { version = "0.8.0", features = [ "fuzzy-select" ] }
34+
dialoguer = { version = "0.8.0", features = [] }
3435

3536
[target.'cfg(unix)'.dependencies]
3637
skim = { version = "0.9.3" }
@@ -56,7 +57,8 @@ assets = [
5657

5758
[patch.crates-io]
5859
# console = { git = "https://github.com/ttys3/console.git", version = "0.15.0" }
59-
dialoguer = { git = "https://github.com/ttys3/dialoguer.git", version = "0.8.0" }
60+
# dialoguer = { git = "https://github.com/ttys3/dialoguer.git", version = "0.8.0" }
61+
dialoguer = { git = "https://github.com/ttys3/dialoguer.git", branch = "fuzzy" }
6062

6163
# local path for dev
6264
# dialoguer = { path = "../lib/dialoguer" }

0 commit comments

Comments
 (0)