chore: increase version

This commit is contained in:
Kevin K 2015-07-11 11:30:33 -04:00
parent 3fa80400f2
commit 62275b7cf6
3 changed files with 21 additions and 9 deletions

View file

@ -1,3 +1,17 @@
<a name="v1.0.3"></a>
### v1.0.3 (2015-07-11)
#### Improvements
* **Errors** writes errors to stderr ([cc76ab8c](https://github.com/kbknapp/clap-rs/commit/cc76ab8c2b77c67b42f4717ded530df7806142cf), closes [#154](https://github.com/kbknapp/clap-rs/issues/154))
#### Documentation
* **README.md** updates example help message to new format ([0aca29bd](https://github.com/kbknapp/clap-rs/commit/0aca29bd5d6d1a4e9971bdc88d946ffa58606efa))
<a name="v1.0.2"></a>
### v1.0.2 (2015-07-09)

View file

@ -1,7 +1,7 @@
[package]
name = "clap"
version = "1.0.2"
version = "1.0.3"
authors = ["Kevin K. <kbknapp@gmail.com>"]
exclude = ["examples/*", "clap-tests/*"]
description = "A simple to use, efficient, and full featured Command Line Argument Parser"

View file

@ -8,9 +8,13 @@ It is a simple to use, efficient, and full featured library for parsing command
## What's New
If you're already familiar with `clap` but just want to see some new highlights as of **1.0.0**
If you're already familiar with `clap` but just want to see some new highlights as of **1.0.3**
* **Args can now be parsed from arbitrary locations!** This makes testing immensly easier. Thanks to [cristicbz](https://github.com/cristicbz) for the idea!
* **Errors are written to stderr** - In order to follow good standards, errors are now written to stderr
* **Deprecated Functions Removed** - In an effort to start a 1.x all deprecated functions have been removed, see the deprecations sections below to update your code (very minimal)
* **Can fully override help** - This allows you fully override the auto-generated help if you so choose
* **Can wait for user input on error** - This is helpful mainly on Windows if a user mistakenly opens your application via double-click, or you'd like to provide a GUI shortcut to run your application
* **Args can now be parsed from arbitrary locations** This makes testing immensly easier. Thanks to [cristicbz](https://github.com/cristicbz) for the idea!
Example...
@ -23,12 +27,6 @@ let m = App::new("my_prog")
// Use matches like normal...
```
As of **1.0.0-beta**
* **Deprecated Functions Removed** - In an effort to start a 1.x all deprecated functions have been removed, see the deprecations sections below to update your code (very minimal)
* **Can fully override help** - This allows you fully override the auto-generated help if you so choose
* **Can wait for user input on error** - This is helpful mainly on Windows if a user mistakenly opens your application via double-click, or you'd like to provide a GUI shortcut to run your application
For full details see the [changelog](https://github.com/kbknapp/clap-rs/blob/master/CHANGELOG.md)
## About