From e81b733064efab51f35d01adb3ae2a63d377a87c Mon Sep 17 00:00:00 2001 From: Kevin K Date: Fri, 13 Nov 2015 09:37:24 -0500 Subject: [PATCH] chore: increase version --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe7a3372..41ab1d61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ + +### 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)) + + + ## v1.5.0 (2015-11-13) diff --git a/Cargo.toml b/Cargo.toml index 8e534607..3de91431 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "clap" -version = "1.5.0" +version = "1.5.1" authors = ["Kevin K. "] 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 }