diff --git a/CHANGELOG.md b/CHANGELOG.md index 669cbdb2..9a9c3902 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index b71ae64c..7cc6355c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "structopt" -version = "0.2.8" +version = "0.2.9" authors = ["Guillaume Pinot ", "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] diff --git a/structopt-derive/Cargo.toml b/structopt-derive/Cargo.toml index 36681eeb..dc641ca2 100644 --- a/structopt-derive/Cargo.toml +++ b/structopt-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "structopt-derive" -version = "0.2.8" +version = "0.2.9" authors = ["Guillaume Pinot "] description = "Parse command line argument by defining a struct, derive crate." documentation = "https://docs.rs/structopt-derive"