From 598fdbc053839a5dbd7abec2d75a324b7c6205a7 Mon Sep 17 00:00:00 2001 From: Kevin K Date: Sun, 29 Jan 2017 18:52:04 -0500 Subject: [PATCH] chore: increase version --- CHANGELOG.md | 13 +++++++++++++ Cargo.toml | 2 +- README.md | 10 ++++++---- 3 files changed, 20 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 34b2d59618d2..9111a0ade7d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ + +### v2.20.1 (2017-01-29) + +#### Improvements + +* updates libc and term_size deps for the libc version conflict ([3a7c8337](https://github.com/kbknapp/clap-rs/commit/3a7c833705caa9e7528c72e512edaab9efe11687)) + + +#### Documentation + +* fix spelling of "guaranteed" ([4f30a65b](https://github.com/kbknapp/clap-rs/commit/4f30a65b9c03eb09607eb91a929a6396637dc105)) + + #### New Settings diff --git a/Cargo.toml b/Cargo.toml index 92e02f2509a1..0c42e2fbf3ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "clap" -version = "2.20.0" +version = "2.20.1" authors = ["Kevin K. "] exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"] repository = "https://github.com/kbknapp/clap-rs.git" diff --git a/README.md b/README.md index 9cd670f1b0f6..e89eea7f1761 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,12 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc) ## What's New -Here's the highlights for v2.20.0 +Here's the highlights for v2.20.1 + +* updates libc and term_size deps for the libc version conflict ([3a7c8337](https://github.com/kbknapp/clap-rs/commit/3a7c833705caa9e7528c72e512edaab9efe11687)) + + +Here's the highlights from v2.0.0 to v2.20.0 * **ArgsNegateSubcommands:** disables args being allowed between subcommands * **DontCollapseArgsInUsage:** disables the collapsing of positional args into `[ARGS]` in the usage string @@ -72,9 +77,6 @@ Here's the highlights for v2.20.0 * **Help Wrapping:** long app names (with spaces), authors, and descriptions are now wrapped appropriately * **Conditional Default Values:** fixes the failing doc tests of Arg::default_value_ifs * **Conditional Requirements:** adds docs for Arg::requires_ifs - -Here's the highlights from v2.0.0 to v2.19.3 - * Fixes a bug where calling the help of a subcommand wasn't ignoring required args of parent commands * Fixes a bug by escaping square brackets in ZSH completions which were causing conflicts and errors. * **Bash Completion:** allows bash completion to fall back to traidtional bash completion upon no matching completing function