2015-03-29 20:01:58 +00:00
|
|
|
# v0.5.2
|
|
|
|
* Fixed a bug when applications have hyphens in their names
|
2015-03-29 18:26:27 +00:00
|
|
|
# v0.5.1
|
|
|
|
* Fixed a bug when the only arguments you've defined are also required
|
2015-03-29 00:49:39 +00:00
|
|
|
# v0.5.0
|
|
|
|
* Added support for values and positional arguments with only specific values
|
|
|
|
* Some performance fixes
|
|
|
|
* Minor bug fixes
|
2015-03-28 04:37:43 +00:00
|
|
|
# v0.4.18
|
|
|
|
* Correctly displays subcommand names when printint help, version, or usage
|
|
|
|
(i.e. 'parent-subcommand' for help/version or 'parent subcommand' for usage)
|
2015-03-28 17:39:28 +00:00
|
|
|
* Fixed bug with arguments required by other arguments, not displaying as
|
|
|
|
required to the user when printing usage information
|
|
|
|
* Changed some format!() to .to_owned() for performance reasons
|
2015-03-27 01:21:01 +00:00
|
|
|
# v0.4.17
|
|
|
|
* Arg values now accept lifetimes other than 'static
|
2015-03-26 19:06:36 +00:00
|
|
|
# v0.4.16
|
2015-03-27 01:21:01 +00:00
|
|
|
* Fixed bug with multiple options
|
|
|
|
* Removed unneeded Box<>'s
|
|
|
|
* Fixed formatting with positionals in help info
|
2015-03-24 18:35:47 +00:00
|
|
|
# v0.4.15
|
|
|
|
* Changed libc to crates.io in prep for Rust 1.0 stability
|
2015-03-24 02:40:18 +00:00
|
|
|
# v0.4.14
|
|
|
|
* Changed App version, about, name, author, and usage to allow lifetimes other than 'static
|
2015-03-23 02:48:46 +00:00
|
|
|
# v0.4.13
|
|
|
|
* Bug fixes with how multiple options are parsed
|
2015-03-23 02:26:07 +00:00
|
|
|
# v0.4.12
|
|
|
|
* Minor bug fixes
|
2015-03-23 02:06:27 +00:00
|
|
|
# v0.4.11
|
|
|
|
* Bug fixes and cleaned up code organization (well started to...)
|
|
|
|
* Changed runtime representation of arguments to lower allocated memory
|
2015-03-21 14:29:38 +00:00
|
|
|
# v0.4.10
|
|
|
|
* Minor bug fixes
|
2015-03-23 02:06:27 +00:00
|
|
|
* Added more comprehensive examples to repo
|