diff --git a/CHANGELOG.md b/CHANGELOG.md index c6b76929..c202f64b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# v0.2.6 (2018-XX-XX) +# v0.2.6 (2018-03-31) * Fail compilation when using `default_value` or `required` with `bool` ([#80](https://github.com/TeXitoi/structopt/issues/80)) by [@TeXitoi](https://github.com/TeXitoi) * Fix compilation with `#[deny(warnings)]` with the `!` type (https://github.com/rust-lang/rust/pull/49039#issuecomment-376398999) by [@TeXitoi](https://github.com/TeXitoi) diff --git a/Cargo.toml b/Cargo.toml index adb8d5c1..a0cfff98 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "structopt" -version = "0.2.5" +version = "0.2.6" authors = ["Guillaume Pinot "] description = "Parse command line argument by defining a struct." documentation = "https://docs.rs/structopt" @@ -19,6 +19,6 @@ travis-ci = { repository = "TeXitoi/structopt" } [dependencies] clap = { version = "2.20", default-features = false } -structopt-derive = { path = "structopt-derive", version = "0.2.5" } +structopt-derive = { path = "structopt-derive", version = "0.2.6" } [workspace] diff --git a/structopt-derive/Cargo.toml b/structopt-derive/Cargo.toml index 7bc3fb33..ac7f0523 100644 --- a/structopt-derive/Cargo.toml +++ b/structopt-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "structopt-derive" -version = "0.2.5" +version = "0.2.6" authors = ["Guillaume Pinot "] description = "Parse command line argument by defining a struct, derive crate." documentation = "https://docs.rs/structopt-derive"