mirror of
https://github.com/clap-rs/clap
synced 2025-03-04 15:27:16 +00:00
chore(clap): increase version
This commit is contained in:
parent
c87d3a7f37
commit
f3e2af811e
3 changed files with 16 additions and 2 deletions
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -1,3 +1,17 @@
|
|||
<a name="v0.8.3"></a>
|
||||
## v0.8.3 (2015-05-10)
|
||||
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
* **usage** groups unfold their members in usage strings ([55d15582](https://github.com/kbknapp/clap-rs/commit/55d155827ea4a6b077a83669701e797ce1ad68f4), closes [#114](https://github.com/kbknapp/clap-rs/issues/114))
|
||||
|
||||
#### Performance
|
||||
|
||||
* **usage** removes unneeded allocations ([fd53cd18](https://github.com/kbknapp/clap-rs/commit/fd53cd188555f5c3dc8bc341c5d7eb04b761a70f))
|
||||
|
||||
|
||||
|
||||
<a name="v0.8.2"></a>
|
||||
## v0.8.2 (2015-05-08)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
|
||||
name = "clap"
|
||||
version = "0.8.2"
|
||||
version = "0.8.3"
|
||||
authors = ["Kevin K. <kbknapp@gmail.com>"]
|
||||
exclude = ["examples/*", "clap-tests/*"]
|
||||
description = "A simple to use, efficient, and full featured Command Line Argument Parser"
|
||||
|
|
|
@ -317,7 +317,7 @@ Contributions are always welcome! And there is a multitude of ways in which you
|
|||
1. Fork the project
|
||||
2. Clone your fork (`git clone https://github.com/$YOUR_USERNAME/clap-rs && cd clap-rs`)
|
||||
3. Create new branch (`git checkout -b new-branch`)
|
||||
4. Make your changes, and commit (`git commit -am "your message"`) (I try to use a [conventional](https://github.com/ajoslin/conventional-changelog/blob/master/CONVENTIONS.md) changelog format so I can update it using [clog](https://github.com/thoughtram/clog))
|
||||
4. Make your changes, and commit (`git commit -am "your message"`) (I use a [conventional](https://github.com/ajoslin/conventional-changelog/blob/master/CONVENTIONS.md) changelog format so I can update my changelog using [clog](https://github.com/thoughtram/clog))
|
||||
5. If applicable, run the tests (See below)
|
||||
6. Push your changes back to your fork (`git push origin your-branch`)
|
||||
7. Create a pull request! (You can also create the pull request right away, and we'll merge when ready. This a good way to discuss proposed changes.)
|
||||
|
|
Loading…
Add table
Reference in a new issue