Skip to content

Commit

Permalink
build: bump version to 0.7.2
Browse files Browse the repository at this point in the history
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
```
  • Loading branch information
ttys3 committed Apr 6, 2021
1 parent 9f29606 commit 56efd64
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

8 changes: 5 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-cz"
version = "0.7.1"
version = "0.7.2"
description = "Git conventional commit tools written in Rust"
keywords = ["git", "conventional", "commit", "changelog", "semantic"]
categories = ["development-tools::build-utils"]
Expand Down Expand Up @@ -30,7 +30,8 @@ structopt = "0.3.21"
url = "2.2.1"
thiserror = "1.0.24"
console = "0.14.1"
dialoguer = { version = "0.8.0", features = [ "fuzzy-select" ] }
#dialoguer = { version = "0.8.0", features = [ "fuzzy-select" ] }
dialoguer = { version = "0.8.0", features = [] }

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

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

# local path for dev
# dialoguer = { path = "../lib/dialoguer" }
Expand Down

0 comments on commit 56efd64

Please sign in to comment.