diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e47da01afd..a2f0f498bfe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [4.4.5] - 2023-09-25 + ### Fixes - *(parser)* When inferring subcommand `name` or `long_flag`, allow ambiguous-looking matches that unambiguously map back to the same command @@ -4450,7 +4452,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.4.4...HEAD +[Unreleased]: https://github.com/clap-rs/clap/compare/v4.4.5...HEAD +[4.4.5]: https://github.com/clap-rs/clap/compare/v4.4.4...v4.4.5 [4.4.4]: https://github.com/clap-rs/clap/compare/v4.4.3...v4.4.4 [4.4.3]: https://github.com/clap-rs/clap/compare/v4.4.2...v4.4.3 [4.4.2]: https://github.com/clap-rs/clap/compare/v4.4.1...v4.4.2 diff --git a/CITATION.cff b/CITATION.cff index 9c756e0f8d2..4ba0649d7e0 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -3,8 +3,8 @@ cff-version: 1.2.0 message: Please cite this crate using these information. # Version information. -date-released: 2023-09-18 -version: 4.4.4 +date-released: 2023-09-25 +version: 4.4.5 # Project information. abstract: A full featured, fast Command Line Argument Parser for Rust diff --git a/Cargo.lock b/Cargo.lock index 71c60857cee..12ea8f1e798 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -478,9 +478,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.4.4" +version = "4.4.5" dependencies = [ - "clap_builder 4.4.4", + "clap_builder 4.4.5", "clap_derive", "humantime", "rustversion", @@ -496,7 +496,7 @@ dependencies = [ name = "clap_bench" version = "0.0.0" dependencies = [ - "clap 4.4.4", + "clap 4.4.5", "criterion", "lazy_static", ] @@ -514,7 +514,7 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.4.4" +version = "4.4.5" dependencies = [ "anstream", "anstyle", @@ -539,7 +539,7 @@ dependencies = [ name = "clap_complete" version = "4.4.1" dependencies = [ - "clap 4.4.4", + "clap 4.4.5", "clap_lex 0.5.1", "completest", "is_executable", @@ -554,7 +554,7 @@ dependencies = [ name = "clap_complete_fig" version = "4.4.1" dependencies = [ - "clap 4.4.4", + "clap 4.4.5", "clap_complete", "snapbox", ] @@ -563,7 +563,7 @@ dependencies = [ name = "clap_complete_nushell" version = "4.4.1" dependencies = [ - "clap 4.4.4", + "clap 4.4.5", "clap_complete", "completest", "snapbox", @@ -593,7 +593,7 @@ version = "0.5.1" name = "clap_mangen" version = "0.2.14" dependencies = [ - "clap 4.4.4", + "clap 4.4.5", "roff", "snapbox", ] diff --git a/Cargo.toml b/Cargo.toml index dca6796a511..f8c4bf531e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ include = [ [package] name = "clap" -version = "4.4.4" +version = "4.4.5" description = "A simple to use, efficient, and full-featured Command Line Argument Parser" repository = "https://github.com/clap-rs/clap" categories = ["command-line-interface"] @@ -101,7 +101,7 @@ unstable-styles = ["clap_builder/unstable-styles"] bench = false [dependencies] -clap_builder = { path = "./clap_builder", version = "=4.4.4", default-features = false } +clap_builder = { path = "./clap_builder", version = "=4.4.5", default-features = false } clap_derive = { path = "./clap_derive", version = "=4.4.2", optional = true } [dev-dependencies] diff --git a/clap_builder/Cargo.toml b/clap_builder/Cargo.toml index 23537e841f4..1aa9dcbea85 100644 --- a/clap_builder/Cargo.toml +++ b/clap_builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clap_builder" -version = "4.4.4" +version = "4.4.5" description = "A simple to use, efficient, and full-featured Command Line Argument Parser" repository = "https://github.com/clap-rs/clap" categories = ["command-line-interface"]