Skip to content

Commit 99a06ed

Browse files
committed
Merge pull request #74 from clog-tool/updates
chore: updates deps and cuts 0.9.0 release
2 parents c18fade + 14dbbcb commit 99a06ed

File tree

3 files changed

+27
-27
lines changed

3 files changed

+27
-27
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ readme = "README.md"
44
keywords = ["git", "log", "changelog", "parser", "parse"]
55
license = "MIT"
66
name = "clog-cli"
7-
version = "0.8.2"
7+
version = "0.9.0"
88
authors = ["Christoph Burgdorf <[email protected]>"]
99
description = "A conventional changelog for the rest of us"
1010
exclude = ["docs/*"]
@@ -13,17 +13,17 @@ exclude = ["docs/*"]
1313
name = "clog"
1414

1515
[dependencies]
16-
semver = "*"
17-
clap = "*"
18-
time = "*"
19-
clog = "*"
16+
semver = "~0.1.20"
17+
clap = "~1.3.0"
18+
time = "~0.1.32"
19+
clog = "~0.8.2"
2020

2121
[dependencies.regex_macros]
22-
version = "*"
22+
version = "~0.1.21"
2323
optional = true
2424

2525
[dependencies.ansi_term]
26-
version = "*"
26+
version = "~0.6.3"
2727
optional = true
2828

2929
[features]

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ fn main () {
6464
// Since --setversion shouldn't be used with any of the --major, --minor, or --match, we
6565
// set those as exclusions
6666
.arg_group(ArgGroup::with_name("setver")
67-
.add_all(vec!["major", "minor", "patch", "ver"]))
67+
.add_all(&["major", "minor", "patch", "ver"]))
6868
.after_help("\
6969
* If your .git directory is a child of your project directory (most common, such as\n\
7070
/myproject/.git) AND not in the current working directory (i.e you need to use --work-tree or\n\

0 commit comments

Comments
 (0)