mirror of
https://github.com/clap-rs/clap
synced 2024-12-12 13:52:34 +00:00
chore: increase version
This commit is contained in:
parent
6b9bd215c1
commit
aad171d3e1
3 changed files with 26 additions and 2 deletions
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -1,3 +1,19 @@
|
|||
<a name="v2.13.0"></a>
|
||||
## v2.13.0 (2016-09-18)
|
||||
|
||||
|
||||
#### Documentation
|
||||
|
||||
* updates README.md with new website information and updated video tutorials info ([0c19c580](https://github.com/kbknapp/clap-rs/commit/0c19c580cf50f1b82ff32f70b36708ae2bcac132))
|
||||
* updates the docs about removing implicit value_delimiter(true) ([c81bc722](https://github.com/kbknapp/clap-rs/commit/c81bc722ebb8a86d22be89b5aec98df9fe222a08))
|
||||
* **Default Values:** adds better examples on using default values ([57a8d9ab](https://github.com/kbknapp/clap-rs/commit/57a8d9abb2f973c235a8a14f8fc031673d7a7460), closes [#418](https://github.com/kbknapp/clap-rs/issues/418))
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
* **Value Delimiters:** fixes the confusion around implicitly setting value delimiters. (default is now `false`) ([09d4d0a9](https://github.com/kbknapp/clap-rs/commit/09d4d0a9038d7ce2df55c2aec95e16f36189fcee), closes [#666](https://github.com/kbknapp/clap-rs/issues/666))
|
||||
|
||||
|
||||
|
||||
<a name="v2.12.1"></a>
|
||||
### v2.12.1 (2016-09-13)
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
[package]
|
||||
|
||||
name = "clap"
|
||||
version = "2.12.1"
|
||||
version = "2.13.0"
|
||||
authors = ["Kevin K. <kbknapp@gmail.com>"]
|
||||
exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"]
|
||||
repository = "https://github.com/kbknapp/clap-rs.git"
|
||||
documentation = "https://docs.rs/clap/"
|
||||
homepage = "https://docs.rs/crate/clap/"
|
||||
homepage = "https://clap.rs/"
|
||||
readme = "README.md"
|
||||
license = "MIT"
|
||||
keywords = ["argument", "command", "arg", "parser", "parse"]
|
||||
|
|
|
@ -41,6 +41,14 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
|
|||
|
||||
## What's New
|
||||
|
||||
Here's the highlights for v2.13.0
|
||||
|
||||
* **Value Delimiters:** fixes the confusion around implicitly setting value delimiters. (The default is to *not* use a delimiter unless explicitly set)
|
||||
* **Docs:** Updates README.md with new website information and updated video tutorials info
|
||||
* **Docs:** Updates the docs about removing implicit `value_delimiter(true)`
|
||||
* **Docs:** Adds better examples on using default values
|
||||
|
||||
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue