chore: increase version

This commit is contained in:
Kevin K 2015-11-13 09:37:24 -05:00
parent f03b88a976
commit e81b733064
2 changed files with 12 additions and 2 deletions

View file

@ -1,3 +1,13 @@
<a name="v1.5.1"></a>
### v1.5.1 (2015-11-13)
#### Bug Fixes
* **Required Args:** fixes a bug where required args are not correctly accounted for ([f03b88a9](https://github.com/kbknapp/clap-rs/commit/f03b88a9766b331a63879bcd747687f2e5a2661b), closes [#343](https://github.com/kbknapp/clap-rs/issues/343))
<a name="v1.5.0"></a>
## v1.5.0 (2015-11-13)

View file

@ -1,7 +1,7 @@
[package]
name = "clap"
version = "1.5.0"
version = "1.5.1"
authors = ["Kevin K. <kbknapp@gmail.com>"]
exclude = ["examples/*", "clap-tests/*", "tests/*", "benches/*", "*.png", "clap-perf/*"]
description = "A simple to use, efficient, and full featured Command Line Argument Parser"
@ -13,7 +13,7 @@ keywords = ["argument", "command", "arg", "parser", "parse"]
[dependencies]
bitflags = "0.3.2"
vec_map = "0.3"
vec_map = "0.4"
ansi_term = { version = "~0.7", optional = true }
strsim = { version = "~0.4.0", optional = true }
yaml-rust = { version = "~0.2.2", optional = true }