Skip to content

Commit 7de2f36

Browse files
committed
chore: Release
1 parent af47562 commit 7de2f36

File tree

6 files changed

+20
-14
lines changed

6 files changed

+20
-14
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [3.2.21] - 2022-09-12
11+
1012
### Features
1113

1214
- `TypedValueParser::map` to allow reusing existing value parsers for other purposes
@@ -3550,7 +3552,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
35503552
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
35513553

35523554
<!-- next-url -->
3553-
[Unreleased]: https://github.com/clap-rs/clap/compare/v3.2.20...HEAD
3555+
[Unreleased]: https://github.com/clap-rs/clap/compare/v3.2.21...HEAD
3556+
[3.2.21]: https://github.com/clap-rs/clap/compare/v3.2.20...v3.2.21
35543557
[3.2.20]: https://github.com/clap-rs/clap/compare/v3.2.19...v3.2.20
35553558
[3.2.19]: https://github.com/clap-rs/clap/compare/v3.2.18...v3.2.19
35563559
[3.2.18]: https://github.com/clap-rs/clap/compare/v3.2.17...v3.2.18

Cargo.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ members = [
1010

1111
[package]
1212
name = "clap"
13-
version = "3.2.20"
13+
version = "3.2.21"
1414
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
1515
repository = "https://github.com/clap-rs/clap"
1616
categories = ["command-line-interface"]

clap_complete/CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [3.2.5] - 2022-09-12
11+
1012
## [3.2.4] - 2022-08-12
1113

1214
## [3.2.3] - 2022-06-28
@@ -69,7 +71,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6971
## [3.0.1] - 2022-01-03
7072

7173
<!-- next-url -->
72-
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete-v3.2.4...HEAD
74+
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete-v3.2.5...HEAD
75+
[3.2.5]: https://github.com/clap-rs/clap/compare/clap_complete-v3.2.4...clap_complete-v3.2.5
7376
[3.2.4]: https://github.com/clap-rs/clap/compare/clap_complete-v3.2.3...clap_complete-v3.2.4
7477
[3.2.3]: https://github.com/clap-rs/clap/compare/clap_complete-v3.2.2...clap_complete-v3.2.3
7578
[3.2.2]: https://github.com/clap-rs/clap/compare/clap_complete-v3.2.1...clap_complete-v3.2.2

clap_complete/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clap_complete"
3-
version = "3.2.4"
3+
version = "3.2.5"
44
description = "Generate shell completion scripts for your clap::Command"
55
repository = "https://github.com/clap-rs/clap/tree/master/clap_complete"
66
categories = ["command-line-interface"]

clap_complete/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
66
[![Crates.io](https://img.shields.io/crates/v/clap_complete?style=flat-square)](https://crates.io/crates/clap_complete)
77
[![Crates.io](https://img.shields.io/crates/d/clap_complete?style=flat-square)](https://crates.io/crates/clap_complete)
8-
[![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.4/LICENSE-APACHE)
9-
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_complete-v3.2.4/LICENSE-MIT)
8+
[![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.5/LICENSE-APACHE)
9+
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_complete-v3.2.5/LICENSE-MIT)
1010

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

1313
1. [About](#about)
1414
2. [API Reference](https://docs.rs/clap_complete)
1515
3. [Questions & Discussions](https://github.com/clap-rs/clap/discussions)
16-
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_complete-v3.2.4/clap_complete/CONTRIBUTING.md)
17-
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v3.2.4/README.md#sponsors)
16+
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_complete-v3.2.5/clap_complete/CONTRIBUTING.md)
17+
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v3.2.5/README.md#sponsors)
1818

1919
## About
2020

0 commit comments

Comments
 (0)