Auto merge of #926 - kbknapp:v2.23.2, r=kbknapp

V2.23.2

<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/kbknapp/clap-rs/926)
<!-- Reviewable:end -->
This commit is contained in:
Homu 2017-04-10 09:43:49 +09:00
commit 3f44dd4b91
3 changed files with 16 additions and 2 deletions

View file

@ -1,3 +1,13 @@
<a name="v2.23.2"></a>
### v2.23.2 (2017-04-09)
#### Improvements
* bumps term_size to take advantage of better terminal dimension handling ([e05100b7](https://github.com/kbknapp/clap-rs/commit/e05100b73d74066a90876bf38f952adf5e8ee422))
<a name="v2.23.1"></a>
### v2.23.1 (2017-04-05)

View file

@ -1,7 +1,7 @@
[package]
name = "clap"
version = "2.23.1"
version = "2.23.2"
authors = ["Kevin K. <kbknapp@gmail.com>"]
exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"]
repository = "https://github.com/kbknapp/clap-rs.git"
@ -22,7 +22,7 @@ unicode-width = "0.1.4"
unicode-segmentation = "1.0.1"
strsim = { version = "0.6.0", optional = true }
ansi_term = { version = "0.9.0", optional = true }
term_size = { version = "0.2.3", optional = true }
term_size = { version = "0.3.0", optional = true }
yaml-rust = { version = "0.3.5", optional = true }
clippy = { version = "~0.0.118", optional = true }
atty = { version = "0.2.2", optional = true }

View file

@ -45,6 +45,10 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
## What's New
Here's the highlights for v2.23.2
* bumps term_size to take advantage of better terminal dimension handling
Here's the highlights for v2.23.1
* fixes a missing newline character in the autogenerated help and version messages in some instances