From 4e56acffcebd6f9b37f0714f3d3b69beacb564b6 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Mon, 13 Jun 2022 09:31:29 -0500 Subject: [PATCH] chore: Release --- CHANGELOG.md | 5 ++++- Cargo.toml | 4 ++-- README.md | 26 +++++++++++++------------- clap_complete/CHANGELOG.md | 5 ++++- clap_complete/Cargo.toml | 2 +- clap_complete/README.md | 8 ++++---- clap_complete_fig/CHANGELOG.md | 5 ++++- clap_complete_fig/Cargo.toml | 2 +- clap_derive/Cargo.toml | 2 +- clap_derive/README.md | 4 ++-- src/derive.rs | 8 ++++---- 11 files changed, 40 insertions(+), 31 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 449bb318854..b4a002b9bd8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,8 @@ _gated behind `unstable-v4`_ ## [Unreleased] - ReleaseDate +## [3.2.0] - 2022-06-13 + ### Features - Parsed, typed arguments via `Arg::value_parser` / `ArgMatches::{get_one,get_many}` (#2683, #3732) @@ -3435,7 +3437,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.1.18...HEAD +[Unreleased]: https://github.com/clap-rs/clap/compare/v3.2.0...HEAD +[3.2.0]: https://github.com/clap-rs/clap/compare/v3.1.18...v3.2.0 [3.1.18]: https://github.com/clap-rs/clap/compare/v3.1.17...v3.1.18 [3.1.17]: https://github.com/clap-rs/clap/compare/v3.1.16...v3.1.17 [3.1.16]: https://github.com/clap-rs/clap/compare/v3.1.15...v3.1.16 diff --git a/Cargo.toml b/Cargo.toml index 320e6689228..eb56708580c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = [ [package] name = "clap" -version = "3.1.18" +version = "3.2.0" description = "A simple to use, efficient, and full-featured Command Line Argument Parser" repository = "https://github.com/clap-rs/clap" documentation = "https://docs.rs/clap/" @@ -90,7 +90,7 @@ unstable-v4 = ["clap_derive/unstable-v4"] bench = false [dependencies] -clap_derive = { path = "./clap_derive", version = "=3.1.18", optional = true } +clap_derive = { path = "./clap_derive", version = "=3.2.0", optional = true } clap_lex = { path = "./clap_lex", version = "0.2.0" } bitflags = "1.2" textwrap = { version = "0.15.0", default-features = false, features = [] } diff --git a/README.md b/README.md index ae18179d336..fb02fea48d0 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ [![Crates.io](https://img.shields.io/crates/v/clap?style=flat-square)](https://crates.io/crates/clap) [![Crates.io](https://img.shields.io/crates/d/clap?style=flat-square)](https://crates.io/crates/clap) -[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/v3.1.18/LICENSE-APACHE) -[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/v3.1.18/LICENSE-MIT) +[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/v3.2.0/LICENSE-APACHE) +[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/v3.2.0/LICENSE-MIT) [![Build Status](https://img.shields.io/github/workflow/status/clap-rs/clap/CI/staging?style=flat-square)](https://github.com/clap-rs/clap/actions/workflows/ci.yml?query=branch%3Astaging) [![Coverage Status](https://img.shields.io/coveralls/github/clap-rs/clap/master?style=flat-square)](https://coveralls.io/github/clap-rs/clap?branch=master) [![Contributors](https://img.shields.io/github/contributors/clap-rs/clap?style=flat-square)](https://github.com/clap-rs/clap/graphs/contributors) @@ -14,15 +14,15 @@ Dual-licensed under [Apache 2.0](LICENSE-APACHE) or [MIT](LICENSE-MIT). 1. [About](#about) -2. Tutorial: [Builder API](https://github.com/clap-rs/clap/blob/v3.1.18/examples/tutorial_builder/README.md), [Derive API](https://github.com/clap-rs/clap/blob/v3.1.18/examples/tutorial_derive/README.md) -3. [Examples](https://github.com/clap-rs/clap/blob/v3.1.18/examples/README.md) +2. Tutorial: [Builder API](https://github.com/clap-rs/clap/blob/v3.2.0/examples/tutorial_builder/README.md), [Derive API](https://github.com/clap-rs/clap/blob/v3.2.0/examples/tutorial_derive/README.md) +3. [Examples](https://github.com/clap-rs/clap/blob/v3.2.0/examples/README.md) 4. [API Reference](https://docs.rs/clap) - - [Derive Reference](https://github.com/clap-rs/clap/blob/v3.1.18/examples/derive_ref/README.md) + - [Derive Reference](https://github.com/clap-rs/clap/blob/v3.2.0/examples/derive_ref/README.md) - [Feature Flags](#feature-flags) -5. [CHANGELOG](https://github.com/clap-rs/clap/blob/v3.1.18/CHANGELOG.md) -6. [FAQ](https://github.com/clap-rs/clap/blob/v3.1.18/docs/FAQ.md) +5. [CHANGELOG](https://github.com/clap-rs/clap/blob/v3.2.0/CHANGELOG.md) +6. [FAQ](https://github.com/clap-rs/clap/blob/v3.2.0/docs/FAQ.md) 7. [Questions & Discussions](https://github.com/clap-rs/clap/discussions) -8. [Contributing](https://github.com/clap-rs/clap/blob/v3.1.18/CONTRIBUTING.md) +8. [Contributing](https://github.com/clap-rs/clap/blob/v3.2.0/CONTRIBUTING.md) 8. [Sponsors](#sponsors) ## About @@ -32,8 +32,8 @@ Create your command-line parser, with all of the bells and whistles, declarative ### Example This uses our -[Derive API](https://github.com/clap-rs/clap/blob/v3.1.18/examples/tutorial_derive/README.md) -which provides access to the [Builder API](https://github.com/clap-rs/clap/blob/v3.1.18/examples/tutorial_builder/README.md) as attributes on a `struct`: +[Derive API](https://github.com/clap-rs/clap/blob/v3.2.0/examples/tutorial_derive/README.md) +which provides access to the [Builder API](https://github.com/clap-rs/clap/blob/v3.2.0/examples/tutorial_builder/README.md) as attributes on a `struct`: ```rust,no_run @@ -63,7 +63,7 @@ fn main() { Add this to `Cargo.toml`: ```toml [dependencies] -clap = { version = "3.1.18", features = ["derive"] } +clap = { version = "3.2.0", features = ["derive"] } ``` ```bash $ demo --help @@ -103,12 +103,12 @@ CLI parsers optimized for other use cases. ### Selecting an API -Why use the declarative [Derive API](https://github.com/clap-rs/clap/blob/v3.1.18/examples/tutorial_derive/README.md): +Why use the declarative [Derive API](https://github.com/clap-rs/clap/blob/v3.2.0/examples/tutorial_derive/README.md): - Easier to read, write, and modify - Easier to keep the argument declaration and reading of argument in sync - Easier to reuse, e.g. [clap-verbosity-flag](https://crates.io/crates/clap-verbosity-flag) -Why use the procedural [Builder API](https://github.com/clap-rs/clap/blob/v3.1.18/examples/tutorial_builder/README.md): +Why use the procedural [Builder API](https://github.com/clap-rs/clap/blob/v3.2.0/examples/tutorial_builder/README.md): - Faster compile times if you aren't already using other procedural macros - More flexible, e.g. you can look up how many times an argument showed up, what its values were, and what were the indexes of those values. The Derive diff --git a/clap_complete/CHANGELOG.md b/clap_complete/CHANGELOG.md index 11fd787330d..82f43373499 100644 --- a/clap_complete/CHANGELOG.md +++ b/clap_complete/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [3.2.0] - 2022-06-13 + ## [3.1.4] - 2022-05-06 ### Fixes @@ -59,7 +61,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [3.0.1] - 2022-01-03 -[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete-v3.1.4...HEAD +[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete-v3.2.0...HEAD +[3.2.0]: https://github.com/clap-rs/clap/compare/clap_complete-v3.1.4...clap_complete-v3.2.0 [3.1.4]: https://github.com/clap-rs/clap/compare/clap_complete-v3.1.3...clap_complete-v3.1.4 [3.1.3]: https://github.com/clap-rs/clap/compare/clap_complete-v3.1.2...clap_complete-v3.1.3 [3.1.2]: https://github.com/clap-rs/clap/compare/clap_complete-v3.1.1...clap_complete-v3.1.2 diff --git a/clap_complete/Cargo.toml b/clap_complete/Cargo.toml index 9f2ad2b2955..779c2bd3415 100644 --- a/clap_complete/Cargo.toml +++ b/clap_complete/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clap_complete" -version = "3.1.4" +version = "3.2.0" description = "Generate shell completion scripts for your clap::Command" repository = "https://github.com/clap-rs/clap/tree/master/clap_complete" documentation = "https://docs.rs/clap_complete" diff --git a/clap_complete/README.md b/clap_complete/README.md index e962aba231d..1948f80f58a 100644 --- a/clap_complete/README.md +++ b/clap_complete/README.md @@ -5,16 +5,16 @@ [![Crates.io](https://img.shields.io/crates/v/clap_complete?style=flat-square)](https://crates.io/crates/clap_complete) [![Crates.io](https://img.shields.io/crates/d/clap_complete?style=flat-square)](https://crates.io/crates/clap_complete) -[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_complete-v3.1.4/LICENSE-APACHE) -[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_complete-v3.1.4/LICENSE-MIT) +[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_complete-v3.2.0/LICENSE-APACHE) +[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_complete-v3.2.0/LICENSE-MIT) Dual-licensed under [Apache 2.0](LICENSE-APACHE) or [MIT](LICENSE-MIT). 1. [About](#about) 2. [API Reference](https://docs.rs/clap_complete) 3. [Questions & Discussions](https://github.com/clap-rs/clap/discussions) -4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_complete-v3.1.4/clap_complete/CONTRIBUTING.md) -5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v3.1.4/README.md#sponsors) +4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_complete-v3.2.0/clap_complete/CONTRIBUTING.md) +5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v3.2.0/README.md#sponsors) ## About diff --git a/clap_complete_fig/CHANGELOG.md b/clap_complete_fig/CHANGELOG.md index 1007f39586b..0c7b1c36ce2 100644 --- a/clap_complete_fig/CHANGELOG.md +++ b/clap_complete_fig/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [3.2.0] - 2022-06-13 + ## [3.1.5] - 2022-04-19 ## [3.1.4] - 2022-03-21 @@ -37,7 +39,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [3.0.1] - 2022-01-03 -[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v3.1.5...HEAD +[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v3.2.0...HEAD +[3.2.0]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v3.1.5...clap_complete_fig-v3.2.0 [3.1.5]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v3.1.4...clap_complete_fig-v3.1.5 [3.1.4]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v3.1.3...clap_complete_fig-v3.1.4 [3.1.3]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v3.1.2...clap_complete_fig-v3.1.3 diff --git a/clap_complete_fig/Cargo.toml b/clap_complete_fig/Cargo.toml index 2a3d9e691f4..f68ff05b7a0 100644 --- a/clap_complete_fig/Cargo.toml +++ b/clap_complete_fig/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clap_complete_fig" -version = "3.1.5" +version = "3.2.0" description = "A generator library used with clap for Fig completion scripts" repository = "https://github.com/clap-rs/clap/tree/master/clap_complete_fig" documentation = "https://docs.rs/clap_complete_fig" diff --git a/clap_derive/Cargo.toml b/clap_derive/Cargo.toml index 7064152163b..d477eee4dbc 100644 --- a/clap_derive/Cargo.toml +++ b/clap_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clap_derive" -version = "3.1.18" +version = "3.2.0" description = "Parse command line argument by defining a struct, derive crate." repository = "https://github.com/clap-rs/clap/tree/master/clap_derive" documentation = "https://docs.rs/clap_derive" diff --git a/clap_derive/README.md b/clap_derive/README.md index 44ffdcc7eaf..325cdb9f379 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.1.18/examples/tutorial_derive/README.md) -- [Derive Reference](https://github.com/clap-rs/clap/blob/v3.1.18/examples/derive_ref/README.md) +- [Derive Tutorial](https://github.com/clap-rs/clap/blob/v3.2.0/examples/tutorial_derive/README.md) +- [Derive Reference](https://github.com/clap-rs/clap/blob/v3.2.0/examples/derive_ref/README.md) ## License diff --git a/src/derive.rs b/src/derive.rs index 4fdb728b37e..9c5bd9685fb 100644 --- a/src/derive.rs +++ b/src/derive.rs @@ -20,7 +20,7 @@ use std::ffi::OsString; /// See also [`Subcommand`] and [`Args`]. /// /// See the -/// [derive reference](https://github.com/clap-rs/clap/blob/v3.1.18/examples/derive_ref/README.md) +/// [derive reference](https://github.com/clap-rs/clap/blob/v3.2.0/examples/derive_ref/README.md) /// for attributes and best practices. /// /// **NOTE:** Deriving requires the `derive` feature flag @@ -349,7 +349,7 @@ pub trait FromArgMatches: Sized { /// - `Variant(ChildArgs)`: No attribute is used with enum variants that impl `Args`. /// /// See the -/// [derive reference](https://github.com/clap-rs/clap/blob/v3.1.18/examples/derive_ref/README.md) +/// [derive reference](https://github.com/clap-rs/clap/blob/v3.2.0/examples/derive_ref/README.md) /// for attributes and best practices. /// /// **NOTE:** Deriving requires the `derive` feature flag @@ -393,7 +393,7 @@ pub trait Args: FromArgMatches + Sized { /// `Subcommand`. /// /// See the -/// [derive reference](https://github.com/clap-rs/clap/blob/v3.1.18/examples/derive_ref/README.md) +/// [derive reference](https://github.com/clap-rs/clap/blob/v3.2.0/examples/derive_ref/README.md) /// for attributes and best practices. /// /// **NOTE:** Deriving requires the `derive` feature flag @@ -437,7 +437,7 @@ pub trait Subcommand: FromArgMatches + Sized { /// - Allowing using the `#[clap(default_value_t)]` attribute without implementing `Display`. /// /// See the -/// [derive reference](https://github.com/clap-rs/clap/blob/v3.1.18/examples/derive_ref/README.md) +/// [derive reference](https://github.com/clap-rs/clap/blob/v3.2.0/examples/derive_ref/README.md) /// for attributes and best practices. /// /// **NOTE:** Deriving requires the `derive` feature flag