From f3e2af811ee8b11b77961d17c2aa77ed98fb2bae Mon Sep 17 00:00:00 2001 From: Kevin K Date: Sun, 10 May 2015 14:57:42 -0400 Subject: [PATCH] chore(clap): increase version --- CHANGELOG.md | 14 ++++++++++++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f27afc30252..ce169a17c89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ + +## 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)) + + + ## v0.8.2 (2015-05-08) diff --git a/Cargo.toml b/Cargo.toml index cfe7bd3b46e..196f10ed278 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "clap" -version = "0.8.2" +version = "0.8.3" authors = ["Kevin K. "] exclude = ["examples/*", "clap-tests/*"] description = "A simple to use, efficient, and full featured Command Line Argument Parser" diff --git a/README.md b/README.md index 643bb0b29a2..d99bff9ba59 100644 --- a/README.md +++ b/README.md @@ -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.)