chore: increase version

This commit is contained in:
Kevin K 2017-10-26 09:28:11 -04:00
parent 0246960bdc
commit 67170a8bd7
No known key found for this signature in database
GPG key ID: 17218E4B3692F01A
4 changed files with 13 additions and 4 deletions

View file

@ -1,3 +1,11 @@
<a name="v2.27.1"></a>
## v2.27.1 (2017-10-24)
#### Bug Fixes
* Adds `term_size` as an optional dependency (with feature `wrap_help`) to fix compile bug
<a name="v2.27.0"></a>
## v2.27.0 (2017-10-24)
@ -6,7 +14,7 @@
** This release also contains a very minor breaking change to fix a bug **
The only CLIs affected will be those using unrestrained multiple values and subcommands where the
subcommand name can coincide with one of the multiple values.
subcommand name can coincide with one of the multiple values.
See the commit [0c223f54](https://github.com/kbknapp/clap-rs/commit/0c223f54ed46da406bc8b43a5806e0b227863b31) for full details.

View file

@ -1,7 +1,7 @@
[package]
name = "clap"
version = "2.27.0"
version = "2.27.1"
authors = ["Kevin K. <kbknapp@gmail.com>"]
exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"]
repository = "https://github.com/kbknapp/clap-rs.git"

View file

@ -45,7 +45,7 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
## What's New
Here's whats new in 2.27.0:
Here's whats new in 2.27.1:
** This release also contains a very minor breaking change to fix a bug **
@ -54,6 +54,7 @@ subcommand name can coincide with one of the multiple values.
See the commit [0c223f54](https://github.com/kbknapp/clap-rs/commit/0c223f54ed46da406bc8b43a5806e0b227863b31) for full details.
* Adds `term_size` as an optional dependency (with feature `wrap_help`) to fix compile bug
* **The minimum required version of Rust is now 1.18.0 (Stable)**
* Values from global args are now propagated UP and DOWN!
* fixes a bug where using AppSettings::AllowHyphenValues would allow invalid arguments even when there is no way for them to be valid

View file

@ -513,7 +513,7 @@
//! this repository for more information.
#![crate_type= "lib"]
#![doc(html_root_url = "https://docs.rs/clap/2.27.0")]
#![doc(html_root_url = "https://docs.rs/clap/2.27.1")]
#![deny(
missing_docs,
missing_debug_implementations,