diff --git a/CHANGELOG.md b/CHANGELOG.md index dc72b688..1eb1059a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# v0.2.4 (2018-02-XX) +# v0.2.4 (2018-02-25) * Fix compilation with `#![deny(missig_docs]` ([#74](https://github.com/TeXitoi/structopt/issues/74)) by [@TeXitoi](https://github.com/TeXitoi) * Fix [#76](https://github.com/TeXitoi/structopt/issues/76) by [@TeXitoi](https://github.com/TeXitoi) diff --git a/Cargo.toml b/Cargo.toml index 114646a6..c4503701 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "structopt" -version = "0.2.3" +version = "0.2.4" authors = ["Guillaume Pinot "] description = "Parse command line argument by defining a struct." documentation = "https://docs.rs/structopt" @@ -18,6 +18,6 @@ travis-ci = { repository = "TeXitoi/structopt" } [dependencies] clap = { version = "2.20", default-features = false } -structopt-derive = { path = "structopt-derive", version = "0.2.3" } +structopt-derive = { path = "structopt-derive", version = "0.2.4" } [workspace] diff --git a/structopt-derive/Cargo.toml b/structopt-derive/Cargo.toml index e93fe7ab..da21f0c3 100644 --- a/structopt-derive/Cargo.toml +++ b/structopt-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "structopt-derive" -version = "0.2.3" +version = "0.2.4" authors = ["Guillaume Pinot "] description = "Parse command line argument by defining a struct, derive crate." documentation = "https://docs.rs/structopt-derive"