Skip to content

Commit 9ab6dee

Browse files
committed
chore: Release
1 parent 374a30d commit 9ab6dee

15 files changed

Lines changed: 47 additions & 35 deletions

File tree

CHANGELOG.md

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

26+
## [4.6.0] - 2026-03-12
27+
2628
### Compatibility
2729

2830
- Update MSRV to 1.85
@@ -4924,7 +4926,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
49244926
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
49254927

49264928
<!-- next-url -->
4927-
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.61...HEAD
4929+
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.6.0...HEAD
4930+
[4.6.0]: https://github.com/clap-rs/clap/compare/v4.5.61...v4.6.0
49284931
[4.5.61]: https://github.com/clap-rs/clap/compare/v4.5.60...v4.5.61
49294932
[4.5.60]: https://github.com/clap-rs/clap/compare/v4.5.59...v4.5.60
49304933
[4.5.59]: https://github.com/clap-rs/clap/compare/v4.5.58...v4.5.59

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ message: Please cite this crate using these information.
44

55
# Version information.
66
date-released: 2026-03-12
7-
version: 4.5.61
7+
version: 4.6.0
88

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

Cargo.lock

Lines changed: 13 additions & 13 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
@@ -108,7 +108,7 @@ lto = true
108108

109109
[package]
110110
name = "clap"
111-
version = "4.5.61"
111+
version = "4.6.0"
112112
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
113113
categories = ["command-line-interface"]
114114
keywords = [
@@ -185,8 +185,8 @@ unstable-markdown = ["clap_derive/unstable-markdown"]
185185
bench = false
186186

187187
[dependencies]
188-
clap_builder = { path = "./clap_builder", version = "=4.5.61", default-features = false }
189-
clap_derive = { path = "./clap_derive", version = "=4.5.61", optional = true }
188+
clap_builder = { path = "./clap_builder", version = "=4.6.0", default-features = false }
189+
clap_derive = { path = "./clap_derive", version = "=4.6.0", optional = true }
190190

191191
[dev-dependencies]
192192
trybuild = "1.0.116"

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.61"
3+
version = "4.6.0"
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](https://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [4.6.0] - 2026-03-12
11+
1012
### Compatibility
1113

1214
- Update MSRV to 1.85
@@ -646,7 +648,8 @@ MSRV changed to 1.64.0
646648
## [3.0.1] - 2022-01-03
647649

648650
<!-- next-url -->
649-
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.67...HEAD
651+
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete-v4.6.0...HEAD
652+
[4.6.0]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.67...clap_complete-v4.6.0
650653
[4.5.67]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.66...clap_complete-v4.5.67
651654
[4.5.66]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.65...clap_complete-v4.5.66
652655
[4.5.65]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.64...clap_complete-v4.5.65

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.67"
3+
version = "4.6.0"
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.67/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.67/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.6.0/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.6.0/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.67/clap_complete/CONTRIBUTING.md)
17-
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v4.5.67/README.md#sponsors)
16+
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_complete-v4.6.0/clap_complete/CONTRIBUTING.md)
17+
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v4.6.0/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](https://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [4.6.0] - 2026-03-12
11+
1012
### Compatibility
1113

1214
- Update MSRV to 1.85
@@ -76,7 +78,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
7678
## [4.3.0] - 2023-05-24
7779

7880
<!-- next-url -->
79-
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete_nushell-v4.5.11...HEAD
81+
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete_nushell-v4.6.0...HEAD
82+
[4.6.0]: https://github.com/clap-rs/clap/compare/clap_complete_nushell-v4.5.11...clap_complete_nushell-v4.6.0
8083
[4.5.11]: https://github.com/clap-rs/clap/compare/clap_complete_nushell-v4.5.10...clap_complete_nushell-v4.5.11
8184
[4.5.10]: https://github.com/clap-rs/clap/compare/clap_complete_nushell-v4.5.9...clap_complete_nushell-v4.5.10
8285
[4.5.9]: https://github.com/clap-rs/clap/compare/clap_complete_nushell-v4.5.8...clap_complete_nushell-v4.5.9

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

0 commit comments

Comments
 (0)