Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Jun 13, 2022
1 parent 73ea5bc commit 650a29c
Show file tree
Hide file tree
Showing 18 changed files with 67 additions and 52 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ _gated behind `unstable-v4`_
<!-- next-header -->
## [Unreleased] - ReleaseDate

## [3.2.1] - 2022-06-13

## [3.2.0] - 2022-06-13

### Features
Expand Down Expand Up @@ -3437,7 +3439,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))

<!-- next-url -->
[Unreleased]: https://github.com/clap-rs/clap/compare/v3.2.0...HEAD
[Unreleased]: https://github.com/clap-rs/clap/compare/v3.2.1...HEAD
[3.2.1]: https://github.com/clap-rs/clap/compare/v3.2.0...v3.2.1
[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
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ members = [

[package]
name = "clap"
version = "3.2.0"
version = "3.2.1"
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/"
Expand Down Expand Up @@ -90,8 +90,8 @@ unstable-v4 = ["clap_derive/unstable-v4"]
bench = false

[dependencies]
clap_derive = { path = "./clap_derive", version = "=3.2.0", optional = true }
clap_lex = { path = "./clap_lex", version = "0.2.0" }
clap_derive = { path = "./clap_derive", version = "=3.2.1", optional = true }
clap_lex = { path = "./clap_lex", version = "0.2.2" }
bitflags = "1.2"
textwrap = { version = "0.15.0", default-features = false, features = [] }
unicase = { version = "2.6", optional = true }
Expand Down
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,24 @@
[![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.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)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/v3.2.1/LICENSE-APACHE)
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/v3.2.1/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)

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.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)
2. Tutorial: [Builder API](https://github.com/clap-rs/clap/blob/v3.2.1/examples/tutorial_builder/README.md), [Derive API](https://github.com/clap-rs/clap/blob/v3.2.1/examples/tutorial_derive/README.md)
3. [Examples](https://github.com/clap-rs/clap/blob/v3.2.1/examples/README.md)
4. [API Reference](https://docs.rs/clap)
- [Derive Reference](https://github.com/clap-rs/clap/blob/v3.2.0/examples/derive_ref/README.md)
- [Derive Reference](https://github.com/clap-rs/clap/blob/v3.2.1/examples/derive_ref/README.md)
- [Feature Flags](#feature-flags)
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)
5. [CHANGELOG](https://github.com/clap-rs/clap/blob/v3.2.1/CHANGELOG.md)
6. [FAQ](https://github.com/clap-rs/clap/blob/v3.2.1/docs/FAQ.md)
7. [Questions & Discussions](https://github.com/clap-rs/clap/discussions)
8. [Contributing](https://github.com/clap-rs/clap/blob/v3.2.0/CONTRIBUTING.md)
8. [Contributing](https://github.com/clap-rs/clap/blob/v3.2.1/CONTRIBUTING.md)
8. [Sponsors](#sponsors)

## About
Expand All @@ -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.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`:
[Derive API](https://github.com/clap-rs/clap/blob/v3.2.1/examples/tutorial_derive/README.md)
which provides access to the [Builder API](https://github.com/clap-rs/clap/blob/v3.2.1/examples/tutorial_builder/README.md) as attributes on a `struct`:

<!-- Copied from examples/demo.{rs,md} -->
```rust,no_run
Expand Down Expand Up @@ -63,7 +63,7 @@ fn main() {
Add this to `Cargo.toml`:
```toml
[dependencies]
clap = { version = "3.2.0", features = ["derive"] }
clap = { version = "3.2.1", features = ["derive"] }
```
```bash
$ demo --help
Expand Down Expand Up @@ -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.2.0/examples/tutorial_derive/README.md):
Why use the declarative [Derive API](https://github.com/clap-rs/clap/blob/v3.2.1/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.2.0/examples/tutorial_builder/README.md):
Why use the procedural [Builder API](https://github.com/clap-rs/clap/blob/v3.2.1/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
Expand Down
2 changes: 1 addition & 1 deletion clap_bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ publish = false
release = false

[dev-dependencies]
clap = { path = "../", version = "3.1.10", default-features = false, features = ["std"] }
clap = { path = "../", version = "3.2.1", default-features = false, features = ["std"] }
criterion = "0.3.2"
lazy_static = "1"

Expand Down
5 changes: 4 additions & 1 deletion clap_complete/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate

## [3.2.1] - 2022-06-13

## [3.2.0] - 2022-06-13

## [3.1.4] - 2022-05-06
Expand Down Expand Up @@ -61,7 +63,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [3.0.1] - 2022-01-03

<!-- next-url -->
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete-v3.2.0...HEAD
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete-v3.2.1...HEAD
[3.2.1]: https://github.com/clap-rs/clap/compare/clap_complete-v3.2.0...clap_complete-v3.2.1
[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
Expand Down
8 changes: 4 additions & 4 deletions clap_complete/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clap_complete"
version = "3.2.0"
version = "3.2.1"
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"
Expand Down Expand Up @@ -42,8 +42,8 @@ pre-release-replacements = [
bench = false

[dependencies]
clap = { path = "../", version = "3.1.10", default-features = false, features = ["std"] }
clap_lex = { path = "../clap_lex", version = "0.2.0", optional = true }
clap = { path = "../", version = "3.2.1", default-features = false, features = ["std"] }
clap_lex = { path = "../clap_lex", version = "0.2.2", optional = true }
is_executable = { version = "1.0.1", optional = true }
os_str_bytes = { version = "6.0", default-features = false, features = ["raw_os_str"], optional = true }
pathdiff = { version = "0.2.1", optional = true }
Expand All @@ -55,7 +55,7 @@ pretty_assertions = "1.0"
snapbox = { version = "0.2", features = ["diff"] }
# Cutting out `filesystem` feature
trycmd = { version = "0.13", default-features = false, features = ["color-auto", "diff", "examples"] }
clap = { path = "../", version = "3.1.10", default-features = false, features = ["std", "derive"] }
clap = { path = "../", version = "3.2.1", default-features = false, features = ["std", "derive"] }

[[example]]
name = "dynamic"
Expand Down
8 changes: 4 additions & 4 deletions clap_complete/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.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)
[![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.1/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.1/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.2.0/clap_complete/CONTRIBUTING.md)
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v3.2.0/README.md#sponsors)
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_complete-v3.2.1/clap_complete/CONTRIBUTING.md)
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v3.2.1/README.md#sponsors)

## About

Expand Down
5 changes: 4 additions & 1 deletion clap_complete_fig/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate

## [3.2.1] - 2022-06-13

## [3.2.0] - 2022-06-13

## [3.1.5] - 2022-04-19
Expand Down Expand Up @@ -39,7 +41,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [3.0.1] - 2022-01-03

<!-- next-url -->
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v3.2.0...HEAD
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v3.2.1...HEAD
[3.2.1]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v3.2.0...clap_complete_fig-v3.2.1
[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
Expand Down
6 changes: 3 additions & 3 deletions clap_complete_fig/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clap_complete_fig"
version = "3.2.0"
version = "3.2.1"
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"
Expand Down Expand Up @@ -41,8 +41,8 @@ pre-release-replacements = [
bench = false

[dependencies]
clap = { path = "../", version = "3.1.10", default-features = false, features = ["std"] }
clap_complete = { path = "../clap_complete", version = "3.1.2" }
clap = { path = "../", version = "3.2.1", default-features = false, features = ["std"] }
clap_complete = { path = "../clap_complete", version = "3.2.1" }

[dev-dependencies]
snapbox = { version = "0.2", features = ["diff"] }
2 changes: 1 addition & 1 deletion clap_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clap_derive"
version = "3.2.0"
version = "3.2.1"
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"
Expand Down
4 changes: 2 additions & 2 deletions clap_derive/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.0/examples/tutorial_derive/README.md)
- [Derive Reference](https://github.com/clap-rs/clap/blob/v3.2.0/examples/derive_ref/README.md)
- [Derive Tutorial](https://github.com/clap-rs/clap/blob/v3.2.1/examples/tutorial_derive/README.md)
- [Derive Reference](https://github.com/clap-rs/clap/blob/v3.2.1/examples/derive_ref/README.md)

## License

Expand Down
5 changes: 4 additions & 1 deletion clap_lex/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate

## [0.2.2] - 2022-06-13

## [0.2.1] - 2022-06-13

### Features
Expand All @@ -24,7 +26,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Drop `memchr` dependency

<!-- next-url -->
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_lex-v0.2.1...HEAD
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_lex-v0.2.2...HEAD
[0.2.2]: https://github.com/clap-rs/clap/compare/clap_lex-v0.2.1...clap_lex-v0.2.2
[0.2.1]: https://github.com/clap-rs/clap/compare/clap_lex-v0.2.0...clap_lex-v0.2.1
[0.2.0]: https://github.com/clap-rs/clap/compare/clap_lex-v0.1.1...clap_lex-v0.2.0
[0.1.1]: https://github.com/clap-rs/clap/compare/ce71b08a3fe28c640dc6e17f6f5bb1452bd6d6d8...clap_lex-v0.1.1
2 changes: 1 addition & 1 deletion clap_lex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clap_lex"
version = "0.2.1"
version = "0.2.2"
description = "Minimal, flexible command line parser"
repository = "https://github.com/clap-rs/clap/tree/master/clap_lex"
documentation = "https://docs.rs/clap_lex"
Expand Down
8 changes: 4 additions & 4 deletions clap_lex/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
[![Crates.io](https://img.shields.io/crates/v/clap_lex?style=flat-square)](https://crates.io/crates/clap_lex)
[![Crates.io](https://img.shields.io/crates/d/clap_lex?style=flat-square)](https://crates.io/crates/clap_lex)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_lex-v0.2.1/LICENSE-APACHE)
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_lex-v0.2.1/LICENSE-MIT)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_lex-v0.2.2/LICENSE-APACHE)
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_lex-v0.2.2/LICENSE-MIT)

Dual-licensed under [Apache 2.0](LICENSE-APACHE) or [MIT](LICENSE-MIT).

1. [About](#about)
2. [API Reference](https://docs.rs/clap_lex)
3. [Questions & Discussions](https://github.com/clap-rs/clap/discussions)
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_lex-v0.2.1/clap_lex/CONTRIBUTING.md)
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_lex-v0.2.1/README.md#sponsors)
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_lex-v0.2.2/clap_lex/CONTRIBUTING.md)
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_lex-v0.2.2/README.md#sponsors)

## About
5 changes: 4 additions & 1 deletion clap_mangen/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate

## [0.1.8] - 2022-06-13

## [0.1.7] - 2022-06-13

## [0.1.6] - 2022-04-20
Expand Down Expand Up @@ -34,7 +36,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Expanded the documentation

<!-- next-url -->
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_mangen-v0.1.7...HEAD
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_mangen-v0.1.8...HEAD
[0.1.8]: https://github.com/clap-rs/clap/compare/clap_mangen-v0.1.7...clap_mangen-v0.1.8
[0.1.7]: https://github.com/clap-rs/clap/compare/clap_mangen-v0.1.6...clap_mangen-v0.1.7
[0.1.6]: https://github.com/clap-rs/clap/compare/clap_mangen-v0.1.5...clap_mangen-v0.1.6
[0.1.5]: https://github.com/clap-rs/clap/compare/clap_mangen-v0.1.4...clap_mangen-v0.1.5
Expand Down
6 changes: 3 additions & 3 deletions clap_mangen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clap_mangen"
version = "0.1.7"
version = "0.1.8"
description = "A manpage generator for clap"
repository = "https://github.com/clap-rs/clap/tree/master/clap_mangen"
documentation = "https://docs.rs/clap_mangen"
Expand Down Expand Up @@ -43,11 +43,11 @@ bench = false

[dependencies]
roff = "0.2.1"
clap = { path = "../", version = "3.1.10", default-features = false, features = ["std", "env"] }
clap = { path = "../", version = "3.2.1", default-features = false, features = ["std", "env"] }

[dev-dependencies]
snapbox = { version = "0.2", features = ["diff"] }
clap = { path = "../", version = "3.1.10", default-features = false, features = ["std"] }
clap = { path = "../", version = "3.2.1", default-features = false, features = ["std"] }

[features]
default = []
Expand Down
8 changes: 4 additions & 4 deletions clap_mangen/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
[![Crates.io](https://img.shields.io/crates/v/clap_mangen?style=flat-square)](https://crates.io/crates/clap_mangen)
[![Crates.io](https://img.shields.io/crates/d/clap_mangen?style=flat-square)](https://crates.io/crates/clap_mangen)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_mangen-v0.1.7/LICENSE-APACHE)
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_mangen-v0.1.7/LICENSE-MIT)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_mangen-v0.1.8/LICENSE-APACHE)
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_mangen-v0.1.8/LICENSE-MIT)

Dual-licensed under [Apache 2.0](LICENSE-APACHE) or [MIT](LICENSE-MIT).

1. [About](#about)
2. [API Reference](https://docs.rs/clap_mangen)
3. [Questions & Discussions](https://github.com/clap-rs/clap/discussions)
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_mangen-v0.1.7/clap_mangen/CONTRIBUTING.md)
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_mangen-v0.1.7/README.md#sponsors)
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_mangen-v0.1.8/clap_mangen/CONTRIBUTING.md)
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_mangen-v0.1.8/README.md#sponsors)

## About

Expand Down
8 changes: 4 additions & 4 deletions src/derive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.2.0/examples/derive_ref/README.md)
/// [derive reference](https://github.com/clap-rs/clap/blob/v3.2.1/examples/derive_ref/README.md)
/// for attributes and best practices.
///
/// **NOTE:** Deriving requires the `derive` feature flag
Expand Down Expand Up @@ -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.2.0/examples/derive_ref/README.md)
/// [derive reference](https://github.com/clap-rs/clap/blob/v3.2.1/examples/derive_ref/README.md)
/// for attributes and best practices.
///
/// **NOTE:** Deriving requires the `derive` feature flag
Expand Down Expand Up @@ -393,7 +393,7 @@ pub trait Args: FromArgMatches + Sized {
/// `Subcommand`.
///
/// See the
/// [derive reference](https://github.com/clap-rs/clap/blob/v3.2.0/examples/derive_ref/README.md)
/// [derive reference](https://github.com/clap-rs/clap/blob/v3.2.1/examples/derive_ref/README.md)
/// for attributes and best practices.
///
/// **NOTE:** Deriving requires the `derive` feature flag
Expand Down Expand Up @@ -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.2.0/examples/derive_ref/README.md)
/// [derive reference](https://github.com/clap-rs/clap/blob/v3.2.1/examples/derive_ref/README.md)
/// for attributes and best practices.
///
/// **NOTE:** Deriving requires the `derive` feature flag
Expand Down

0 comments on commit 650a29c

Please sign in to comment.