Skip to content

Commit e27a6ff

Browse files
authored
chore: increase version
* chore: disables mention-bots finding reviewers and pinging tons of people * docs(README.md): added a warning about using ~ deps * chore: increase version
1 parent d02e24a commit e27a6ff

File tree

3 files changed

+36
-5
lines changed

3 files changed

+36
-5
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
<a name="v2.24.2"></a>
2+
### v2.25.0 (2017-06-20)
3+
4+
5+
#### Features
6+
7+
* use textwrap crate for wrapping help texts ([b93870c1](https://github.com/kbknapp/clap-rs/commit/b93870c10ae3bd90d233c586a33e086803117285))
8+
9+
#### Improvements
10+
11+
* **Suggestions:** suggests to use flag after subcommand when applicable ([2671ca72](https://github.com/kbknapp/clap-rs/commit/2671ca7260119d4311d21c4075466aafdd9da734))
12+
* Bumps bitflags crate to v0.9
13+
14+
#### Documentation
15+
16+
* Change `who's` -> `whose` ([53c1ffe8](https://github.com/kbknapp/clap-rs/commit/53c1ffe87f38b05d8804a0f7832412a952845349))
17+
18+
#### Documentation
19+
20+
* **App::template:** adds details about the necessity to use AppSettings::UnifiedHelpMessage when using {unified} tags in the help template ([cbea3d5a](https://github.com/kbknapp/clap-rs/commit/cbea3d5acf3271a7a734498c4d99c709941c331e), closes [#949](https://github.com/kbknapp/clap-rs/issues/949))
21+
* **Arg::allow_hyphen_values:** updates the docs to include warnings for allow_hyphen_values and multiple(true) used together ([f9b0d657](https://github.com/kbknapp/clap-rs/commit/f9b0d657835d3f517f313d70962177dc30acf4a7))
22+
* **README.md:**
23+
* added a warning about using ~ deps ([821929b5](https://github.com/kbknapp/clap-rs/commit/821929b51bd60213955705900a436c9a64fcb79f), closes [#964](https://github.com/kbknapp/clap-rs/issues/964))
24+
* added a warning about using ~ deps ([667697b0](https://github.com/kbknapp/clap-rs/commit/667697b0018369b71da41d02d567ab57df0f4887))
25+
* **clap_app!:** adds using the @group specifier to the macro docs ([826048cb](https://github.com/kbknapp/clap-rs/commit/826048cb3cbc0280169303f1498ff0a2b7395883), closes [#932](https://github.com/kbknapp/clap-rs/issues/932))
26+
27+
28+
129
<a name="v2.24.2"></a>
230
### v2.24.2 (2017-05-15)
331

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "clap"
4-
version = "2.24.2"
4+
version = "2.25.0"
55
authors = ["Kevin K. <[email protected]>"]
66
exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"]
77
repository = "https://github.com/kbknapp/clap-rs.git"

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,20 @@ Created by [gh-md-toc](https://github.com/ekalinin/github-markdown-toc)
4545

4646
## What's New
4747

48-
Here's the highlights for v2.24.2
48+
Here's the highlights for v2.25.0
49+
50+
* use textwrap crate for wrapping help texts
51+
* suggests to use flag after subcommand when applicable
52+
* Bumps bitflags crate to v0.9
53+
54+
Here's the highlights for v2.21.0 to v2.24.2
4955

5056
* fixes a bug where args that allow values to start with a hyphen couldnt contain a double hyphen -- as a value
5157
* fixes a bug where positional argument help text is misaligned
5258
* **App::template docs:** adds details about the necessity to use AppSettings::UnifiedHelpMessage when using {unified} tags in the help template
5359
* **Arg::allow_hyphen_values docs:** updates the docs to include warnings for allow_hyphen_values and multiple(true) used together
5460
* **clap_app! docs:** adds using the @group specifier to the macro docs
5561
* adds a debug assertion to ensure all args added to groups actually exist
56-
57-
Here's the highlights for v2.21.0 to v2.24.1
58-
5962
* fixes a bug where args with last(true) and required(true) set were not being printed in the usage string
6063
* fixes a bug that was printing the arg name, instead of value name when Arg::last(true) was used
6164
* fixes a bug where flags were parsed as flags AND positional values when specific combinations of settings were used

0 commit comments

Comments
 (0)