mirror of
https://github.com/clap-rs/clap
synced 2024-12-15 15:22:30 +00:00
v0.2.9
This commit is contained in:
parent
100d88fb8a
commit
17bfde098d
3 changed files with 12 additions and 3 deletions
|
@ -1,3 +1,12 @@
|
|||
# v0.2.9 (2018-06-05)
|
||||
|
||||
* Fix a bug when using `flatten` by
|
||||
[@fbenkstein](https://github.com/fbenkstein)
|
||||
* Update syn, quote and proc_macro2 by
|
||||
[@TeXitoi](https://github.com/TeXitoi)
|
||||
* Fix a regression when there is multiple authors by
|
||||
[@windwardly](https://github.com/windwardly)
|
||||
|
||||
# v0.2.8 (2018-04-28)
|
||||
|
||||
* Add `StructOpt::from_iter_safe()`, which returns an `Error` instead of
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "structopt"
|
||||
version = "0.2.8"
|
||||
version = "0.2.9"
|
||||
authors = ["Guillaume Pinot <texitoi@texitoi.eu>", "others"]
|
||||
description = "Parse command line argument by defining a struct."
|
||||
documentation = "https://docs.rs/structopt"
|
||||
|
@ -27,6 +27,6 @@ travis-ci = { repository = "TeXitoi/structopt" }
|
|||
|
||||
[dependencies]
|
||||
clap = { version = "2.20", default-features = false }
|
||||
structopt-derive = { path = "structopt-derive", version = "0.2.8" }
|
||||
structopt-derive = { path = "structopt-derive", version = "0.2.9" }
|
||||
|
||||
[workspace]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "structopt-derive"
|
||||
version = "0.2.8"
|
||||
version = "0.2.9"
|
||||
authors = ["Guillaume Pinot <texitoi@texitoi.eu>"]
|
||||
description = "Parse command line argument by defining a struct, derive crate."
|
||||
documentation = "https://docs.rs/structopt-derive"
|
||||
|
|
Loading…
Reference in a new issue