Skip to content

Commit b4a1362

Browse files
committed
chore: Release
1 parent 3e80393 commit b4a1362

File tree

17 files changed

+58
-43
lines changed

17 files changed

+58
-43
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ _gated behind `unstable-v4`_
3030
<!-- next-header -->
3131
## [Unreleased] - ReleaseDate
3232

33+
## [3.2.7] - 2022-06-28
34+
3335
### Fixes
3436

3537
- Global arguments should override env-sourced arguments
@@ -3493,7 +3495,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
34933495
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
34943496

34953497
<!-- next-url -->
3496-
[Unreleased]: https://github.com/clap-rs/clap/compare/v3.2.6...HEAD
3498+
[Unreleased]: https://github.com/clap-rs/clap/compare/v3.2.7...HEAD
3499+
[3.2.7]: https://github.com/clap-rs/clap/compare/v3.2.6...v3.2.7
34973500
[3.2.6]: https://github.com/clap-rs/clap/compare/v3.2.5...v3.2.6
34983501
[3.2.5]: https://github.com/clap-rs/clap/compare/v3.2.4...v3.2.5
34993502
[3.2.4]: https://github.com/clap-rs/clap/compare/v3.2.3...v3.2.4

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ members = [
1010

1111
[package]
1212
name = "clap"
13-
version = "3.2.6"
13+
version = "3.2.7"
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"]
@@ -90,7 +90,7 @@ unstable-v4 = ["clap_derive/unstable-v4", "deprecated"]
9090
bench = false
9191

9292
[dependencies]
93-
clap_derive = { path = "./clap_derive", version = "=3.2.6", optional = true }
93+
clap_derive = { path = "./clap_derive", version = "=3.2.7", optional = true }
9494
clap_lex = { path = "./clap_lex", version = "0.2.2" }
9595
bitflags = "1.2"
9696
textwrap = { version = "0.15.0", default-features = false, features = [] }

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@
55
66
[![Crates.io](https://img.shields.io/crates/v/clap?style=flat-square)](https://crates.io/crates/clap)
77
[![Crates.io](https://img.shields.io/crates/d/clap?style=flat-square)](https://crates.io/crates/clap)
8-
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/v3.2.6/LICENSE-APACHE)
9-
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/v3.2.6/LICENSE-MIT)
8+
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/v3.2.7/LICENSE-APACHE)
9+
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/v3.2.7/LICENSE-MIT)
1010
[![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)
1111
[![Coverage Status](https://img.shields.io/coveralls/github/clap-rs/clap/master?style=flat-square)](https://coveralls.io/github/clap-rs/clap?branch=master)
1212
[![Contributors](https://img.shields.io/github/contributors/clap-rs/clap?style=flat-square)](https://github.com/clap-rs/clap/graphs/contributors)
1313

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

1616
1. [About](#about)
17-
2. Tutorial: [Builder API](https://github.com/clap-rs/clap/blob/v3.2.6/examples/tutorial_builder/README.md), [Derive API](https://github.com/clap-rs/clap/blob/v3.2.6/examples/tutorial_derive/README.md)
18-
3. [Examples](https://github.com/clap-rs/clap/blob/v3.2.6/examples/README.md)
17+
2. Tutorial: [Builder API](https://github.com/clap-rs/clap/blob/v3.2.7/examples/tutorial_builder/README.md), [Derive API](https://github.com/clap-rs/clap/blob/v3.2.7/examples/tutorial_derive/README.md)
18+
3. [Examples](https://github.com/clap-rs/clap/blob/v3.2.7/examples/README.md)
1919
4. [API Reference](https://docs.rs/clap)
20-
- [Derive Reference](https://github.com/clap-rs/clap/blob/v3.2.6/examples/derive_ref/README.md)
20+
- [Derive Reference](https://github.com/clap-rs/clap/blob/v3.2.7/examples/derive_ref/README.md)
2121
- [Feature Flags](#feature-flags)
22-
5. [CHANGELOG](https://github.com/clap-rs/clap/blob/v3.2.6/CHANGELOG.md)
23-
6. [FAQ](https://github.com/clap-rs/clap/blob/v3.2.6/docs/FAQ.md)
22+
5. [CHANGELOG](https://github.com/clap-rs/clap/blob/v3.2.7/CHANGELOG.md)
23+
6. [FAQ](https://github.com/clap-rs/clap/blob/v3.2.7/docs/FAQ.md)
2424
7. [Questions & Discussions](https://github.com/clap-rs/clap/discussions)
25-
8. [Contributing](https://github.com/clap-rs/clap/blob/v3.2.6/CONTRIBUTING.md)
25+
8. [Contributing](https://github.com/clap-rs/clap/blob/v3.2.7/CONTRIBUTING.md)
2626
8. [Sponsors](#sponsors)
2727

2828
## About
@@ -32,8 +32,8 @@ Create your command-line parser, with all of the bells and whistles, declarative
3232
### Example
3333

3434
This uses our
35-
[Derive API](https://github.com/clap-rs/clap/blob/v3.2.6/examples/tutorial_derive/README.md)
36-
which provides access to the [Builder API](https://github.com/clap-rs/clap/blob/v3.2.6/examples/tutorial_builder/README.md) as attributes on a `struct`:
35+
[Derive API](https://github.com/clap-rs/clap/blob/v3.2.7/examples/tutorial_derive/README.md)
36+
which provides access to the [Builder API](https://github.com/clap-rs/clap/blob/v3.2.7/examples/tutorial_builder/README.md) as attributes on a `struct`:
3737

3838
<!-- Copied from examples/demo.{rs,md} -->
3939
```rust,no_run
@@ -63,7 +63,7 @@ fn main() {
6363
Add this to `Cargo.toml`:
6464
```toml
6565
[dependencies]
66-
clap = { version = "3.2.6", features = ["derive"] }
66+
clap = { version = "3.2.7", features = ["derive"] }
6767
```
6868
```bash
6969
$ demo --help
@@ -103,12 +103,12 @@ CLI parsers optimized for other use cases.
103103

104104
### Selecting an API
105105

106-
Why use the declarative [Derive API](https://github.com/clap-rs/clap/blob/v3.2.6/examples/tutorial_derive/README.md):
106+
Why use the declarative [Derive API](https://github.com/clap-rs/clap/blob/v3.2.7/examples/tutorial_derive/README.md):
107107
- Easier to read, write, and modify
108108
- Easier to keep the argument declaration and reading of argument in sync
109109
- Easier to reuse, e.g. [clap-verbosity-flag](https://crates.io/crates/clap-verbosity-flag)
110110

111-
Why use the procedural [Builder API](https://github.com/clap-rs/clap/blob/v3.2.6/examples/tutorial_builder/README.md):
111+
Why use the procedural [Builder API](https://github.com/clap-rs/clap/blob/v3.2.7/examples/tutorial_builder/README.md):
112112
- Faster compile times if you aren't already using other procedural macros
113113
- More flexible, e.g. you can look up how many times an argument showed up,
114114
what its values were, and what were the indexes of those values. The Derive

clap_complete/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
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.3] - 2022-06-28
11+
1012
## [3.2.2] - 2022-06-21
1113

1214
## [3.2.1] - 2022-06-13
@@ -65,7 +67,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6567
## [3.0.1] - 2022-01-03
6668

6769
<!-- next-url -->
68-
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete-v3.2.2...HEAD
70+
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete-v3.2.3...HEAD
71+
[3.2.3]: https://github.com/clap-rs/clap/compare/clap_complete-v3.2.2...clap_complete-v3.2.3
6972
[3.2.2]: https://github.com/clap-rs/clap/compare/clap_complete-v3.2.1...clap_complete-v3.2.2
7073
[3.2.1]: https://github.com/clap-rs/clap/compare/clap_complete-v3.2.0...clap_complete-v3.2.1
7174
[3.2.0]: https://github.com/clap-rs/clap/compare/clap_complete-v3.1.4...clap_complete-v3.2.0

clap_complete/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clap_complete"
3-
version = "3.2.2"
3+
version = "3.2.3"
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

Lines changed: 4 additions & 4 deletions
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.2/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.2/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.3/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.3/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.2/clap_complete/CONTRIBUTING.md)
17-
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v3.2.2/README.md#sponsors)
16+
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_complete-v3.2.3/clap_complete/CONTRIBUTING.md)
17+
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v3.2.3/README.md#sponsors)
1818

1919
## About
2020

clap_complete_fig/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
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.3] - 2022-06-28
11+
1012
## [3.2.2] - 2022-06-21
1113

1214
## [3.2.1] - 2022-06-13
@@ -43,7 +45,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4345
## [3.0.1] - 2022-01-03
4446

4547
<!-- next-url -->
46-
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v3.2.2...HEAD
48+
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v3.2.3...HEAD
49+
[3.2.3]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v3.2.2...clap_complete_fig-v3.2.3
4750
[3.2.2]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v3.2.1...clap_complete_fig-v3.2.2
4851
[3.2.1]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v3.2.0...clap_complete_fig-v3.2.1
4952
[3.2.0]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v3.1.5...clap_complete_fig-v3.2.0

clap_complete_fig/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clap_complete_fig"
3-
version = "3.2.2"
3+
version = "3.2.3"
44
description = "A generator library used with clap for Fig completion scripts"
55
repository = "https://github.com/clap-rs/clap/tree/master/clap_complete_fig"
66
categories = ["command-line-interface"]

clap_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clap_derive"
3-
version = "3.2.6"
3+
version = "3.2.7"
44
description = "Parse command line argument by defining a struct, derive crate."
55
repository = "https://github.com/clap-rs/clap/tree/master/clap_derive"
66
categories = ["command-line-interface", "development-tools::procedural-macro-helpers"]

clap_derive/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Macro implementation for clap's derives.
44

55
[docs.rs](https://docs.rs/clap)
6-
- [Derive Tutorial](https://github.com/clap-rs/clap/blob/v3.2.6/examples/tutorial_derive/README.md)
7-
- [Derive Reference](https://github.com/clap-rs/clap/blob/v3.2.6/examples/derive_ref/README.md)
6+
- [Derive Tutorial](https://github.com/clap-rs/clap/blob/v3.2.7/examples/tutorial_derive/README.md)
7+
- [Derive Reference](https://github.com/clap-rs/clap/blob/v3.2.7/examples/derive_ref/README.md)
88

99
## License
1010

0 commit comments

Comments
 (0)