diff --git a/CHANGELOG.md b/CHANGELOG.md index 77ac58feea8..e40606437af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,8 @@ _gated behind `unstable-v4`_ ## [Unreleased] - ReleaseDate +## [3.2.15] - 2022-07-25 + ### Features - *(derive)* New `default_values_t` and `default_values_os_t` attributes @@ -3535,7 +3537,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/v3.2.14...HEAD +[Unreleased]: https://github.com/clap-rs/clap/compare/v3.2.15...HEAD +[3.2.15]: https://github.com/clap-rs/clap/compare/v3.2.14...v3.2.15 [3.2.14]: https://github.com/clap-rs/clap/compare/v3.2.13...v3.2.14 [3.2.13]: https://github.com/clap-rs/clap/compare/v3.2.12...v3.2.13 [3.2.12]: https://github.com/clap-rs/clap/compare/v3.2.11...v3.2.12 diff --git a/Cargo.lock b/Cargo.lock index e1cb868e7e6..4eb880ec691 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -128,7 +128,7 @@ dependencies = [ [[package]] name = "clap" -version = "3.2.14" +version = "3.2.15" dependencies = [ "atty", "backtrace", @@ -157,7 +157,7 @@ dependencies = [ name = "clap_bench" version = "0.0.0" dependencies = [ - "clap 3.2.14", + "clap 3.2.15", "criterion", "lazy_static", ] @@ -166,7 +166,7 @@ dependencies = [ name = "clap_complete" version = "3.2.3" dependencies = [ - "clap 3.2.14", + "clap 3.2.15", "clap_lex", "is_executable", "os_str_bytes", @@ -182,14 +182,14 @@ dependencies = [ name = "clap_complete_fig" version = "3.2.4" dependencies = [ - "clap 3.2.14", + "clap 3.2.15", "clap_complete", "snapbox", ] [[package]] name = "clap_derive" -version = "3.2.7" +version = "3.2.15" dependencies = [ "heck", "proc-macro-error", @@ -209,7 +209,7 @@ dependencies = [ name = "clap_mangen" version = "0.1.10" dependencies = [ - "clap 3.2.14", + "clap 3.2.15", "roff", "snapbox", ] diff --git a/Cargo.toml b/Cargo.toml index d65983a9874..6eac4f87ff0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = [ [package] name = "clap" -version = "3.2.14" +version = "3.2.15" description = "A simple to use, efficient, and full-featured Command Line Argument Parser" repository = "https://github.com/clap-rs/clap" categories = ["command-line-interface"] @@ -87,7 +87,7 @@ unstable-v4 = ["clap_derive/unstable-v4", "deprecated"] bench = false [dependencies] -clap_derive = { path = "./clap_derive", version = "=3.2.7", optional = true } +clap_derive = { path = "./clap_derive", version = "=3.2.15", optional = true } clap_lex = { path = "./clap_lex", version = "0.2.2" } bitflags = "1.2" textwrap = { version = "0.15.0", default-features = false, features = [] } diff --git a/clap_derive/Cargo.toml b/clap_derive/Cargo.toml index e2fc77d8766..ecdebf0e715 100644 --- a/clap_derive/Cargo.toml +++ b/clap_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clap_derive" -version = "3.2.7" +version = "3.2.15" description = "Parse command line argument by defining a struct, derive crate." repository = "https://github.com/clap-rs/clap/tree/master/clap_derive" categories = ["command-line-interface", "development-tools::procedural-macro-helpers"] diff --git a/clap_derive/README.md b/clap_derive/README.md index f33c3fc7718..58b6274b588 100644 --- a/clap_derive/README.md +++ b/clap_derive/README.md @@ -3,8 +3,8 @@ Macro implementation for clap's derives. [docs.rs](https://docs.rs/clap) -- [Derive Tutorial](https://github.com/clap-rs/clap/blob/v3.2.7/examples/tutorial_derive/README.md) -- [Derive Reference](https://github.com/clap-rs/clap/blob/v3.2.7/examples/derive_ref/README.md) +- [Derive Tutorial](https://github.com/clap-rs/clap/blob/v3.2.15/examples/tutorial_derive/README.md) +- [Derive Reference](https://github.com/clap-rs/clap/blob/v3.2.15/examples/derive_ref/README.md) ## License