mirror of
https://github.com/clap-rs/clap
synced 2025-03-04 15:27:16 +00:00
chore: increase version
This commit is contained in:
parent
0246960bdc
commit
67170a8bd7
4 changed files with 13 additions and 4 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -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.
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue