This commit is contained in:
Guillaume P 2018-06-05 17:46:46 +02:00
parent 100d88fb8a
commit 17bfde098d
3 changed files with 12 additions and 3 deletions

View file

@ -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) # v0.2.8 (2018-04-28)
* Add `StructOpt::from_iter_safe()`, which returns an `Error` instead of * Add `StructOpt::from_iter_safe()`, which returns an `Error` instead of

View file

@ -1,6 +1,6 @@
[package] [package]
name = "structopt" name = "structopt"
version = "0.2.8" version = "0.2.9"
authors = ["Guillaume Pinot <texitoi@texitoi.eu>", "others"] authors = ["Guillaume Pinot <texitoi@texitoi.eu>", "others"]
description = "Parse command line argument by defining a struct." description = "Parse command line argument by defining a struct."
documentation = "https://docs.rs/structopt" documentation = "https://docs.rs/structopt"
@ -27,6 +27,6 @@ travis-ci = { repository = "TeXitoi/structopt" }
[dependencies] [dependencies]
clap = { version = "2.20", default-features = false } 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] [workspace]

View file

@ -1,6 +1,6 @@
[package] [package]
name = "structopt-derive" name = "structopt-derive"
version = "0.2.8" version = "0.2.9"
authors = ["Guillaume Pinot <texitoi@texitoi.eu>"] authors = ["Guillaume Pinot <texitoi@texitoi.eu>"]
description = "Parse command line argument by defining a struct, derive crate." description = "Parse command line argument by defining a struct, derive crate."
documentation = "https://docs.rs/structopt-derive" documentation = "https://docs.rs/structopt-derive"