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
90d7d6a2ea
commit
638bf11cfe
3 changed files with 35 additions and 6 deletions
23
CHANGELOG.md
23
CHANGELOG.md
|
@ -1,3 +1,24 @@
|
|||
<a name="v2.5.2"></a>
|
||||
### v2.5.2 (2016-05-31)
|
||||
|
||||
|
||||
#### Improvements
|
||||
|
||||
* removes extra newline from help output ([86e61d19](https://github.com/kbknapp/clap-rs/commit/86e61d19a748fb9870fcf1175308984e51ca1115))
|
||||
* allows printing version to any io::Write object ([921f5f79](https://github.com/kbknapp/clap-rs/commit/921f5f7916597f1d028cd4a65bfe76a01c801724))
|
||||
* removes extra newline when printing version ([7e2e2cbb](https://github.com/kbknapp/clap-rs/commit/7e2e2cbb4a8a0f050bb8072a376f742fc54b8589))
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
* fixes bug where args are printed out of order with templates ([3935431d](https://github.com/kbknapp/clap-rs/commit/3935431d5633f577c0826ae2142794b301f4b8ca))
|
||||
* fixes bug where one can't override version or help flags ([90d7d6a2](https://github.com/kbknapp/clap-rs/commit/90d7d6a2ea8240122dd9bf8d82d3c4f5ebb5c703), closes [#514](https://github.com/kbknapp/clap-rs/issues/514))
|
||||
* fixes issue where before_help wasn't printed ([b3faff60](https://github.com/kbknapp/clap-rs/commit/b3faff6030f76a23f26afcfa6a90169002ed7106))
|
||||
|
||||
#### Documentation
|
||||
|
||||
* inter-links all types and pages ([3312893d](https://github.com/kbknapp/clap-rs/commit/3312893ddaef3f44d68d8d26ed3d08010be50d97), closes [#505](https://github.com/kbknapp/clap-rs/issues/505))
|
||||
* makes all publicly available types viewable in docs ([52ca6505](https://github.com/kbknapp/clap-rs/commit/52ca6505b4fec7b5c2d53d160c072d395eb21da6))
|
||||
|
||||
<a name="v2.5.1"></a>
|
||||
### v2.5.1 (2016-05-11)
|
||||
|
||||
|
@ -6,8 +27,6 @@
|
|||
|
||||
* **Subcommand Aliases**: fixes lifetime issue when setting multiple aliases at once ([ac42f6cf0](https://github.com/kbknapp/clap-rs/commit/ac42f6cf0de6c4920f703807d63061803930b18d))
|
||||
|
||||
|
||||
|
||||
<a name="v2.5.0"></a>
|
||||
## v2.5.0 (2016-05-10)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
|
||||
name = "clap"
|
||||
version = "2.5.1"
|
||||
version = "2.5.2"
|
||||
authors = ["Kevin K. <kbknapp@gmail.com>"]
|
||||
exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"]
|
||||
description = "A simple to use, efficient, and full featured Command Line Argument Parser"
|
||||
|
|
16
README.md
16
README.md
|
@ -38,6 +38,16 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
|
|||
|
||||
## What's New
|
||||
|
||||
Here's what's new in v.2.5.2
|
||||
|
||||
* Removes trailing newlines from help and version output
|
||||
* Allows printing version to any io::Write object
|
||||
* Inter-links all types and pages
|
||||
* Makes all publicly available types viewable in docs
|
||||
* Fixes bug where one can't override version or help flags
|
||||
* Fixes bug where args are printed out of order when using templates
|
||||
* Fixes issue where `App::before_help` wasn't printed properly
|
||||
|
||||
Here's what's new in v.2.5.0
|
||||
|
||||
* Subcommands now support aliases - think of them as hidden subcommands that dispatch to said subcommand automatically
|
||||
|
@ -50,12 +60,12 @@ Here's what's new in v2.4.3
|
|||
* Improvements
|
||||
* Positional arguments which are part of a group are now formatted in a more readable way (fewer brackets)
|
||||
* Positional arguments use the standard `<>` brackets to reduce confusion
|
||||
* The default help string for the `help` subcommand has been shortened to fit in 80 columns
|
||||
* The default help string for the `help` subcommand has been shortened to fit in 80 columns
|
||||
|
||||
Here's the highlights from v2.4.0
|
||||
|
||||
* **Before Help:** adds support for displaying info before help message
|
||||
* **Required Unless:** adds support for allowing args that are required unless certain other args are present
|
||||
* **Before Help:** adds support for displaying info before help message
|
||||
* **Required Unless:** adds support for allowing args that are required unless certain other args are present
|
||||
* Bug fixes
|
||||
|
||||
Here's the highlights from v2.3.0
|
||||
|
|
Loading…
Reference in a new issue