mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
chore: increase version
This commit is contained in:
parent
991aefc10a
commit
929ee98ec8
3 changed files with 19 additions and 1 deletions
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -1,3 +1,16 @@
|
|||
<a name="2.2.1"></a>
|
||||
### 2.2.1 (2016-03-16)
|
||||
|
||||
|
||||
#### Features
|
||||
|
||||
* **Help Message:** wraps and aligns the help message of subcommands ([813d75d0](https://github.com/kbknapp/clap-rs/commit/813d75d06fbf077c65762608c0fa5e941cfc393c), closes [#452](https://github.com/kbknapp/clap-rs/issues/452))
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
* **Help Message:** fixes a bug where small terminal sizes causing a loop ([1d73b035](https://github.com/kbknapp/clap-rs/commit/1d73b0355236923aeaf6799abc759762ded7e1d0), closes [#453](https://github.com/kbknapp/clap-rs/issues/453))
|
||||
|
||||
|
||||
<a name="v2.2.0"></a>
|
||||
## v2.2.0 (2016-03-15)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
|
||||
name = "clap"
|
||||
version = "2.2.0"
|
||||
version = "2.2.1"
|
||||
authors = ["Kevin K. <kbknapp@gmail.com>"]
|
||||
exclude = ["examples/*", "clap-tests/*", "tests/*", "benches/*", "*.png", "clap-perf/*"]
|
||||
description = "A simple to use, efficient, and full featured Command Line Argument Parser"
|
||||
|
|
|
@ -38,6 +38,11 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
|
|||
|
||||
## What's New
|
||||
|
||||
Here's the highlights from v2.2.1
|
||||
|
||||
* **Help text auto wraps and aligns at for subcommands too!** - Long help strings of subcommands will now properly wrap and align to term width on Linux and OSX. This can be turned off as well.
|
||||
* Bug fixes
|
||||
|
||||
Here's the highlights from v2.2.0
|
||||
|
||||
#### Features
|
||||
|
|
Loading…
Reference in a new issue