Skip to content

Commit f6602c5

Browse files
committed
chore: Release
1 parent 1e171cf commit f6602c5

File tree

8 files changed

+25
-19
lines changed

8 files changed

+25
-19
lines changed

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+
## [4.0.1] - 2022-09-28
11+
1012
### Fixes
1113

1214
- *(derive)* Ensure `#[clap(...)]` attribute still works
@@ -3851,7 +3853,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
38513853
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
38523854

38533855
<!-- next-url -->
3854-
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.0.0...HEAD
3856+
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.0.1...HEAD
3857+
[4.0.1]: https://github.com/clap-rs/clap/compare/v4.0.0...v4.0.1
38553858
[4.0.0]: https://github.com/clap-rs/clap/compare/v3.2.18...v4.0.0
38563859
[3.2.18]: https://github.com/clap-rs/clap/compare/v3.2.17...v3.2.18
38573860
[3.2.17]: https://github.com/clap-rs/clap/compare/v3.2.16...v3.2.17

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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 = "4.0.0"
13+
version = "4.0.1"
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"]
@@ -91,7 +91,7 @@ unstable-v5 = ["clap_derive?/unstable-v5", "deprecated"]
9191
bench = false
9292

9393
[dependencies]
94-
clap_derive = { path = "./clap_derive", version = "=4.0.0", optional = true }
94+
clap_derive = { path = "./clap_derive", version = "=4.0.1", optional = true }
9595
clap_lex = { path = "./clap_lex", version = "0.3.0" }
9696
bitflags = "1.2"
9797
unicase = { version = "2.6", optional = true }

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 = "4.0.0"
3+
version = "4.0.1"
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/v4.0.0/examples/tutorial_derive/README.md)
7-
- [Derive Reference](https://github.com/clap-rs/clap/blob/v4.0.0/examples/derive_ref/README.md)
6+
- [Derive Tutorial](https://github.com/clap-rs/clap/blob/v4.0.1/examples/tutorial_derive/README.md)
7+
- [Derive Reference](https://github.com/clap-rs/clap/blob/v4.0.1/examples/derive_ref/README.md)
88

99
## License
1010

clap_mangen/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+
## [0.2.1] - 2022-09-28
11+
1012
### Fixes
1113

1214
- Respect hide attributes in more cases
@@ -46,7 +48,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4648
- Expanded the documentation
4749

4850
<!-- next-url -->
49-
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_mangen-v0.2.0...HEAD
51+
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_mangen-v0.2.1...HEAD
52+
[0.2.1]: https://github.com/clap-rs/clap/compare/clap_mangen-v0.2.0...clap_mangen-v0.2.1
5053
[0.2.0]: https://github.com/clap-rs/clap/compare/clap_mangen-v0.1.10...clap_mangen-v0.2.0
5154
[0.1.10]: https://github.com/clap-rs/clap/compare/clap_mangen-v0.1.9...clap_mangen-v0.1.10
5255
[0.1.9]: https://github.com/clap-rs/clap/compare/clap_mangen-v0.1.8...clap_mangen-v0.1.9

clap_mangen/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_mangen"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "A manpage generator for clap"
55
repository = "https://github.com/clap-rs/clap/tree/master/clap_mangen"
66
categories = ["command-line-interface"]

clap_mangen/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_mangen?style=flat-square)](https://crates.io/crates/clap_mangen)
77
[![Crates.io](https://img.shields.io/crates/d/clap_mangen?style=flat-square)](https://crates.io/crates/clap_mangen)
8-
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_mangen-v0.2.0/LICENSE-APACHE)
9-
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_mangen-v0.2.0/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_mangen-v0.2.1/LICENSE-APACHE)
9+
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_mangen-v0.2.1/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_mangen)
1515
3. [Questions & Discussions](https://github.com/clap-rs/clap/discussions)
16-
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_mangen-v0.2.0/clap_mangen/CONTRIBUTING.md)
17-
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_mangen-v0.2.0/README.md#sponsors)
16+
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_mangen-v0.2.1/clap_mangen/CONTRIBUTING.md)
17+
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_mangen-v0.2.1/README.md#sponsors)
1818

1919
## About
2020

0 commit comments

Comments
 (0)