Skip to content

Commit 3716f9f

Browse files
committed
chore: Release
1 parent 613b69a commit 3716f9f

File tree

18 files changed

+85
-70
lines changed

18 files changed

+85
-70
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2222
<!-- next-header -->
2323
## [Unreleased] - ReleaseDate
2424

25+
## [4.5.40] - 2025-06-09
26+
2527
### Features
2628

2729
- Support quoted ids in `arg!()` macro (e.g. `arg!("check-config": ...)`)
@@ -4785,7 +4787,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
47854787
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
47864788

47874789
<!-- next-url -->
4788-
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.39...HEAD
4790+
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.40...HEAD
4791+
[4.5.40]: https://github.com/clap-rs/clap/compare/v4.5.39...v4.5.40
47894792
[4.5.39]: https://github.com/clap-rs/clap/compare/v4.5.38...v4.5.39
47904793
[4.5.38]: https://github.com/clap-rs/clap/compare/v4.5.37...v4.5.38
47914794
[4.5.37]: https://github.com/clap-rs/clap/compare/v4.5.36...v4.5.37

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ cff-version: 1.2.0
33
message: Please cite this crate using these information.
44

55
# Version information.
6-
date-released: 2025-05-27
7-
version: 4.5.39
6+
date-released: 2025-06-09
7+
version: 4.5.40
88

99
# Project information.
1010
abstract: A full featured, fast Command Line Argument Parser for Rust

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ lto = true
109109

110110
[package]
111111
name = "clap"
112-
version = "4.5.39"
112+
version = "4.5.40"
113113
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
114114
categories = ["command-line-interface"]
115115
keywords = [
@@ -186,8 +186,8 @@ unstable-markdown = ["clap_derive/unstable-markdown"]
186186
bench = false
187187

188188
[dependencies]
189-
clap_builder = { path = "./clap_builder", version = "=4.5.39", default-features = false }
190-
clap_derive = { path = "./clap_derive", version = "=4.5.32", optional = true }
189+
clap_builder = { path = "./clap_builder", version = "=4.5.40", default-features = false }
190+
clap_derive = { path = "./clap_derive", version = "=4.5.40", optional = true }
191191

192192
[dev-dependencies]
193193
trybuild = "1.0.91"

clap_builder/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_builder"
3-
version = "4.5.39"
3+
version = "4.5.40"
44
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
55
categories = ["command-line-interface"]
66
keywords = [

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+
## [4.5.53] - 2025-06-09
11+
1012
## [4.5.52] - 2025-05-30
1113

1214
### Features
@@ -568,7 +570,8 @@ MSRV changed to 1.64.0
568570
## [3.0.1] - 2022-01-03
569571

570572
<!-- next-url -->
571-
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.52...HEAD
573+
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.53...HEAD
574+
[4.5.53]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.52...clap_complete-v4.5.53
572575
[4.5.52]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.51...clap_complete-v4.5.52
573576
[4.5.51]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.50...clap_complete-v4.5.51
574577
[4.5.50]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.49...clap_complete-v4.5.50

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 = "4.5.52"
3+
version = "4.5.53"
44
description = "Generate shell completion scripts for your clap::Command"
55
categories = ["command-line-interface"]
66
keywords = [

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-v4.5.52/LICENSE-APACHE)
9-
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_complete-v4.5.52/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-v4.5.53/LICENSE-APACHE)
9+
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_complete-v4.5.53/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-v4.5.52/clap_complete/CONTRIBUTING.md)
17-
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v4.5.52/README.md#sponsors)
16+
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_complete-v4.5.53/clap_complete/CONTRIBUTING.md)
17+
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v4.5.53/README.md#sponsors)
1818

1919
## About
2020

clap_complete_nushell/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.5.7] - 2025-06-09
11+
1012
## [4.5.6] - 2025-05-27
1113

1214
## [4.5.5] - 2025-01-02
@@ -54,7 +56,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
5456
## [4.3.0] - 2023-05-24
5557

5658
<!-- next-url -->
57-
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete_nushell-v4.5.6...HEAD
59+
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete_nushell-v4.5.7...HEAD
60+
[4.5.7]: https://github.com/clap-rs/clap/compare/clap_complete_nushell-v4.5.6...clap_complete_nushell-v4.5.7
5861
[4.5.6]: https://github.com/clap-rs/clap/compare/clap_complete_nushell-v4.5.5...clap_complete_nushell-v4.5.6
5962
[4.5.5]: https://github.com/clap-rs/clap/compare/clap_complete_nushell-v4.5.4...clap_complete_nushell-v4.5.5
6063
[4.5.4]: https://github.com/clap-rs/clap/compare/clap_complete_nushell-v4.5.3...clap_complete_nushell-v4.5.4

clap_complete_nushell/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_nushell"
3-
version = "4.5.6"
3+
version = "4.5.7"
44
description = "A generator library used with clap for Nushell completion scripts"
55
categories = ["command-line-interface"]
66
keywords = [

0 commit comments

Comments
 (0)