chore: Release
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 84611d3..6e2dbdb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -20,6 +20,8 @@
<!-- next-header -->
## [Unreleased] - ReleaseDate
+## [4.5.30] - 2025-02-17
+
### Fixes
- *(assert)* Allow `num_args(0..=1)` to be used with `SetTrue`
@@ -4712,7 +4714,8 @@
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
<!-- next-url -->
-[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.29...HEAD
+[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.30...HEAD
+[4.5.30]: https://github.com/clap-rs/clap/compare/v4.5.29...v4.5.30
[4.5.29]: https://github.com/clap-rs/clap/compare/v4.5.28...v4.5.29
[4.5.28]: https://github.com/clap-rs/clap/compare/v4.5.27...v4.5.28
[4.5.27]: https://github.com/clap-rs/clap/compare/v4.5.26...v4.5.27
diff --git a/CITATION.cff b/CITATION.cff
index a6cd63e..055ad2d 100644
--- a/CITATION.cff
+++ b/CITATION.cff
@@ -3,8 +3,8 @@
message: Please cite this crate using these information.
# Version information.
-date-released: 2025-02-11
-version: 4.5.29
+date-released: 2025-02-17
+version: 4.5.30
# Project information.
abstract: A full featured, fast Command Line Argument Parser for Rust
diff --git a/Cargo.lock b/Cargo.lock
index 4edac95..bfbab31 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -432,11 +432,11 @@
[[package]]
name = "clap"
-version = "4.5.29"
+version = "4.5.30"
dependencies = [
"automod",
"clap-cargo",
- "clap_builder 4.5.29",
+ "clap_builder 4.5.30",
"clap_derive",
"humantime",
"rustversion",
@@ -459,7 +459,7 @@
name = "clap_bench"
version = "0.0.0"
dependencies = [
- "clap 4.5.29",
+ "clap 4.5.30",
"divan",
"lazy_static",
]
@@ -479,7 +479,7 @@
[[package]]
name = "clap_builder"
-version = "4.5.29"
+version = "4.5.30"
dependencies = [
"anstream",
"anstyle",
@@ -496,10 +496,10 @@
[[package]]
name = "clap_complete"
-version = "4.5.44"
+version = "4.5.45"
dependencies = [
"automod",
- "clap 4.5.29",
+ "clap 4.5.30",
"clap_lex 0.7.4",
"completest",
"completest-pty",
@@ -513,7 +513,7 @@
name = "clap_complete_nushell"
version = "4.5.5"
dependencies = [
- "clap 4.5.29",
+ "clap 4.5.30",
"clap_complete",
"completest",
"completest-nu",
@@ -550,7 +550,7 @@
version = "0.2.26"
dependencies = [
"automod",
- "clap 4.5.29",
+ "clap 4.5.30",
"roff",
"snapbox",
]
diff --git a/Cargo.toml b/Cargo.toml
index b52c367..a2d4514 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -99,7 +99,7 @@
[package]
name = "clap"
-version = "4.5.29"
+version = "4.5.30"
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
categories = ["command-line-interface"]
keywords = [
@@ -176,7 +176,7 @@
bench = false
[dependencies]
-clap_builder = { path = "./clap_builder", version = "=4.5.29", default-features = false }
+clap_builder = { path = "./clap_builder", version = "=4.5.30", default-features = false }
clap_derive = { path = "./clap_derive", version = "=4.5.28", optional = true }
[dev-dependencies]
diff --git a/clap_builder/Cargo.toml b/clap_builder/Cargo.toml
index 10f4ef7..c2a3d15 100644
--- a/clap_builder/Cargo.toml
+++ b/clap_builder/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "clap_builder"
-version = "4.5.29"
+version = "4.5.30"
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
categories = ["command-line-interface"]
keywords = [
diff --git a/clap_complete/CHANGELOG.md b/clap_complete/CHANGELOG.md
index a1587eb..36c51f2 100644
--- a/clap_complete/CHANGELOG.md
+++ b/clap_complete/CHANGELOG.md
@@ -7,6 +7,8 @@
<!-- next-header -->
## [Unreleased] - ReleaseDate
+## [4.5.45] - 2025-02-17
+
### Fixes
- *(dynamic)* Correctly complete option values based on `num_args`
@@ -527,7 +529,8 @@
## [3.0.1] - 2022-01-03
<!-- next-url -->
-[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.44...HEAD
+[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.45...HEAD
+[4.5.45]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.44...clap_complete-v4.5.45
[4.5.44]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.43...clap_complete-v4.5.44
[4.5.43]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.42...clap_complete-v4.5.43
[4.5.42]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.41...clap_complete-v4.5.42
diff --git a/clap_complete/Cargo.toml b/clap_complete/Cargo.toml
index bb7cddc..d262e80 100644
--- a/clap_complete/Cargo.toml
+++ b/clap_complete/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "clap_complete"
-version = "4.5.44"
+version = "4.5.45"
description = "Generate shell completion scripts for your clap::Command"
categories = ["command-line-interface"]
keywords = [
diff --git a/clap_complete/README.md b/clap_complete/README.md
index b9480df..969065f 100644
--- a/clap_complete/README.md
+++ b/clap_complete/README.md
@@ -5,16 +5,16 @@
[](https://crates.io/crates/clap_complete)
[](https://crates.io/crates/clap_complete)
-[](https://github.com/clap-rs/clap/blob/clap_complete-v4.5.44/LICENSE-APACHE)
-[](https://github.com/clap-rs/clap/blob/clap_complete-v4.5.44/LICENSE-MIT)
+[](https://github.com/clap-rs/clap/blob/clap_complete-v4.5.45/LICENSE-APACHE)
+[](https://github.com/clap-rs/clap/blob/clap_complete-v4.5.45/LICENSE-MIT)
Dual-licensed under [Apache 2.0](LICENSE-APACHE) or [MIT](LICENSE-MIT).
1. [About](#about)
2. [API Reference](https://docs.rs/clap_complete)
3. [Questions & Discussions](https://github.com/clap-rs/clap/discussions)
-4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_complete-v4.5.44/clap_complete/CONTRIBUTING.md)
-5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v4.5.44/README.md#sponsors)
+4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_complete-v4.5.45/clap_complete/CONTRIBUTING.md)
+5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v4.5.45/README.md#sponsors)
## About
diff --git a/src/lib.rs b/src/lib.rs
index c610e8b..70036e9 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -11,7 +11,7 @@
//! - [Cookbook][_cookbook]
//! - [FAQ][_faq]
//! - [Discussions](https://github.com/clap-rs/clap/discussions)
-//! - [CHANGELOG](https://github.com/clap-rs/clap/blob/v4.5.29/CHANGELOG.md) (includes major version migration
+//! - [CHANGELOG](https://github.com/clap-rs/clap/blob/v4.5.30/CHANGELOG.md) (includes major version migration
//! guides)
//!
//! ## Aspirations