mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 22:32:33 +00:00
chore(clap): increase version
This commit is contained in:
parent
1b7316d4a8
commit
16a609183a
2 changed files with 4 additions and 1 deletions
|
@ -1,6 +1,9 @@
|
|||
# v0.4.18
|
||||
* Correctly displays subcommand names when printint help, version, or usage
|
||||
(i.e. 'parent-subcommand' for help/version or 'parent subcommand' for usage)
|
||||
* Fixed bug with arguments required by other arguments, not displaying as
|
||||
required to the user when printing usage information
|
||||
* Changed some format!() to .to_owned() for performance reasons
|
||||
# v0.4.17
|
||||
* Arg values now accept lifetimes other than 'static
|
||||
# v0.4.16
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
|
||||
name = "clap"
|
||||
version = "0.4.17"
|
||||
version = "0.4.18"
|
||||
authors = ["Kevin K. <kbknapp@gmail.com>"]
|
||||
exclude = ["docs/*", "examples/*", "claptests/*"]
|
||||
description = "A simple and efficient Command Line Argument Parser"
|
||||
|
|
Loading…
Reference in a new issue