mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 14:22:34 +00:00
chore: increase version
This commit is contained in:
parent
85b0e1cc4b
commit
2572150558
3 changed files with 27 additions and 1 deletions
19
CHANGELOG.md
19
CHANGELOG.md
|
@ -1,3 +1,22 @@
|
|||
<a name="v2.23.2"></a>
|
||||
### v2.23.2 (2017-04-19)
|
||||
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
* **PowerShell Completions:** fixes a bug where powershells completions cant be used if no subcommands are defined ([a8bce558](https://github.com/kbknapp/clap-rs/commit/a8bce55837dc4e0fb187dc93180884a40ae09c6f), closes [#931](https://github.com/kbknapp/clap-rs/issues/931))
|
||||
|
||||
#### Improvements
|
||||
|
||||
* bumps term_size to take advantage of better terminal dimension handling ([e05100b7](https://github.com/kbknapp/clap-rs/commit/e05100b73d74066a90876bf38f952adf5e8ee422))
|
||||
* **PowerShell Completions:** massively dedups subcommand names in the generate script to make smaller scripts that are still functionally equiv ([85b0e1cc](https://github.com/kbknapp/clap-rs/commit/85b0e1cc4b9755dda75a93d898d79bc38631552b))
|
||||
|
||||
#### Documentation
|
||||
|
||||
* Fix a typo the minimum rust version required ([71dabba3](https://github.com/kbknapp/clap-rs/commit/71dabba3ea0a17c88b0e2199c9d99f0acbf3bc17))
|
||||
|
||||
|
||||
|
||||
<a name="v2.23.2"></a>
|
||||
### v2.23.2 (2017-04-09)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
|
||||
name = "clap"
|
||||
version = "2.23.2"
|
||||
version = "2.23.3"
|
||||
authors = ["Kevin K. <kbknapp@gmail.com>"]
|
||||
exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"]
|
||||
repository = "https://github.com/kbknapp/clap-rs.git"
|
||||
|
|
|
@ -45,6 +45,13 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
|
|||
|
||||
## What's New
|
||||
|
||||
Here's the highlights for v2.23.3
|
||||
|
||||
* **PowerShell Completions:**
|
||||
* fixes a bug where powershells completions cant be used if no subcommands are defined
|
||||
* massively dedups subcommand names in the generate script to make smaller scripts that are still functionally equiv
|
||||
* Fix a typo the minimum rust version required
|
||||
|
||||
Here's the highlights for v2.23.2
|
||||
|
||||
* bumps term_size to take advantage of better terminal dimension handling
|
||||
|
|
Loading…
Reference in a new issue