Skip to content

Commit

Permalink
chore: increase version
Browse files Browse the repository at this point in the history
  • Loading branch information
kbknapp committed May 30, 2016
1 parent c9f8a3a commit c479ad7
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 6 deletions.
23 changes: 21 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
<a name="v2.5.2"></a>
### v2.5.2 (2016-05-30)


#### Improvements

* removes extra newline from help output ([13695880](https://github.com/kbknapp/clap-rs/commit/13695880c6f0114ffba73dd9924ef91ca8e745fd))
* 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 one can't override version flag ([c9f8a3a2](https://github.com/kbknapp/clap-rs/commit/c9f8a3a23e425da9542e98f75b09f2bd46c0b2a3), closes [#514](https://github.com/kbknapp/clap-rs/issues/514))
* fixes issue where before_help wasn't printed ([58d9daf2](https://github.com/kbknapp/clap-rs/commit/58d9daf22cc04c7ce3975c226815ff9ecd4c4011))

#### 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)

Expand All @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "clap"
version = "2.5.1"
version = "2.5.2"
authors = ["Kevin K. <[email protected]>"]
exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"]
description = "A simple to use, efficient, and full featured Command Line Argument Parser"
Expand Down
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,15 @@ 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 flag
* 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
Expand All @@ -50,12 +59,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
Expand Down

0 comments on commit c479ad7

Please sign in to comment.