chore: increase version

This commit is contained in:
Kevin K 2016-09-12 23:28:12 -04:00
parent 5c29448d54
commit 44742844bc
No known key found for this signature in database
GPG key ID: 64FA5B74693EE1E5
3 changed files with 15 additions and 1 deletions

View file

@ -1,3 +1,13 @@
<a name="v2.12.1"></a>
### v2.12.1 (2016-09-13)
#### Bug Fixes
* **Help Wrapping:** fixes a regression-bug where the old {n} newline char stopped working ([92ac353b](https://github.com/kbknapp/clap-rs/commit/92ac353b48b7caa2511ad2a046d94da93c236cf6), closes [#661](https://github.com/kbknapp/clap-rs/issues/661))
<a name="v2.12.0"></a>
## v2.12.0 (2016-09-13)

View file

@ -1,7 +1,7 @@
[package]
name = "clap"
version = "2.12.0"
version = "2.12.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

@ -39,6 +39,10 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
## What's New
Here's the highlights for v2.12.1
* Fixes a regression-bug where the old `{n}` newline char stopped being replaced a properly re-aligned newline
Here's the highlights for v2.12.0
* Changes the default value delimiter rules (i.e. the default is `use_delimiter(false)` *unless* a setting/method that implies multiple values was used) **[Bugfix that *may* "break" code]**