From e5ba93afd33b8fea595e6cb30d61934ae562e3f6 Mon Sep 17 00:00:00 2001 From: Kevin K Date: Wed, 29 Jun 2016 23:25:14 -0400 Subject: [PATCH] chore: increase version --- CHANGELOG.md | 18 ++++++++++++++++++ Cargo.toml | 2 +- README.md | 7 +++++++ 3 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bbafdde5cfc..ad89c112857 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ + +## v2.8.0 (2016-06-30) + + +#### Features + +* **Arg:** adds new setting `Arg::require_delimiter` which requires val delimiter to parse multiple values ([920b5595](https://github.com/kbknapp/clap-rs/commit/920b5595ed72abfb501ce054ab536067d8df2a66)) + +#### Bug Fixes + +* Declare term::Winsize as repr(C) ([5d663d90](https://github.com/kbknapp/clap-rs/commit/5d663d905c9829ce6e7a164f1f0896cdd70236dd)) + +#### Documentation + +* **Arg:** adds docs for ([49af4e38](https://github.com/kbknapp/clap-rs/commit/49af4e38a5dae2ab0a7fc3b4147e2c053d532484)) + + + ### v2.7.1 (2016-06-29) diff --git a/Cargo.toml b/Cargo.toml index 181636a922c..e1a0b980fa3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "clap" -version = "2.7.1" +version = "2.8.0" authors = ["Kevin K. "] exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"] description = "A simple to use, efficient, and full featured Command Line Argument Parser" diff --git a/README.md b/README.md index 1163997fa49..c923fe316c4 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,13 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc) ## What's New +Here's the highlights for v2.8.0 + +* **Arg:** adds new optional setting `Arg::require_delimiter` which requires val delimiter to parse multiple values +* The terminal sizing portion has been factored out into a separate crate, [term_size](https://crates.io/crates/term_size) +* Minor bug fixes + + Here's the highlights for v2.7.1 * **Options:**