diff --git a/CHANGELOG.md b/CHANGELOG.md index f219afe701e..da0d571b2c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [4.0.2] - 2022-09-28 + ### Fixes - *(parser)* `SetFalse` should conflict with itself like `SetTrue` and `Set` @@ -3858,7 +3860,8 @@ Minimum version of Rust is now v1.13.0 (Stable) * **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5)) -[Unreleased]: https://github.com/clap-rs/clap/compare/v4.0.1...HEAD +[Unreleased]: https://github.com/clap-rs/clap/compare/v4.0.2...HEAD +[4.0.2]: https://github.com/clap-rs/clap/compare/v4.0.1...v4.0.2 [4.0.1]: https://github.com/clap-rs/clap/compare/v4.0.0...v4.0.1 [4.0.0]: https://github.com/clap-rs/clap/compare/v3.2.18...v4.0.0 [3.2.18]: https://github.com/clap-rs/clap/compare/v3.2.17...v3.2.18 diff --git a/Cargo.lock b/Cargo.lock index 76c5c646f08..3baa524eb84 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -110,7 +110,7 @@ dependencies = [ [[package]] name = "clap" -version = "4.0.1" +version = "4.0.2" dependencies = [ "atty", "backtrace", @@ -137,7 +137,7 @@ dependencies = [ name = "clap_bench" version = "0.0.0" dependencies = [ - "clap 4.0.1", + "clap 4.0.2", "criterion", "lazy_static", ] @@ -146,7 +146,7 @@ dependencies = [ name = "clap_complete" version = "4.0.1" dependencies = [ - "clap 4.0.1", + "clap 4.0.2", "clap_lex", "is_executable", "os_str_bytes", @@ -161,7 +161,7 @@ dependencies = [ name = "clap_complete_fig" version = "4.0.0" dependencies = [ - "clap 4.0.1", + "clap 4.0.2", "clap_complete", "snapbox", ] @@ -188,7 +188,7 @@ dependencies = [ name = "clap_mangen" version = "0.2.1" dependencies = [ - "clap 4.0.1", + "clap 4.0.2", "roff", "snapbox", ] diff --git a/Cargo.toml b/Cargo.toml index 12fa1de8d65..d19f680bd55 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = [ [package] name = "clap" -version = "4.0.1" +version = "4.0.2" description = "A simple to use, efficient, and full-featured Command Line Argument Parser" repository = "https://github.com/clap-rs/clap" categories = ["command-line-interface"]