chore(clap): increase version

This commit is contained in:
Kevin K 2015-03-28 13:39:28 -04:00
parent 1b7316d4a8
commit 16a609183a
2 changed files with 4 additions and 1 deletions

View file

@ -1,6 +1,9 @@
# v0.4.18 # v0.4.18
* Correctly displays subcommand names when printint help, version, or usage * Correctly displays subcommand names when printint help, version, or usage
(i.e. 'parent-subcommand' for help/version or 'parent subcommand' for 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 # v0.4.17
* Arg values now accept lifetimes other than 'static * Arg values now accept lifetimes other than 'static
# v0.4.16 # v0.4.16

View file

@ -1,7 +1,7 @@
[package] [package]
name = "clap" name = "clap"
version = "0.4.17" version = "0.4.18"
authors = ["Kevin K. <kbknapp@gmail.com>"] authors = ["Kevin K. <kbknapp@gmail.com>"]
exclude = ["docs/*", "examples/*", "claptests/*"] exclude = ["docs/*", "examples/*", "claptests/*"]
description = "A simple and efficient Command Line Argument Parser" description = "A simple and efficient Command Line Argument Parser"