Skip to content

Commit f8b9e24

Browse files
committed
chore: Release
1 parent 4457eb9 commit f8b9e24

File tree

7 files changed

+20
-17
lines changed

7 files changed

+20
-17
lines changed

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](http://semver.org/).
2323
<!-- next-header -->
2424
## [Unreleased] - ReleaseDate
2525

26+
## [4.5.47] - 2025-09-02
27+
2628
### Features
2729

2830
- Added `impl FromArgMatches for ()`
@@ -4836,7 +4838,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
48364838
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
48374839

48384840
<!-- next-url -->
4839-
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.46...HEAD
4841+
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.47...HEAD
4842+
[4.5.47]: https://github.com/clap-rs/clap/compare/v4.5.46...v4.5.47
48404843
[4.5.46]: https://github.com/clap-rs/clap/compare/v4.5.45...v4.5.46
48414844
[4.5.45]: https://github.com/clap-rs/clap/compare/v4.5.44...v4.5.45
48424845
[4.5.44]: https://github.com/clap-rs/clap/compare/v4.5.43...v4.5.44

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-08-26
7-
version: 4.5.46
6+
date-released: 2025-09-02
7+
version: 4.5.47
88

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

Cargo.lock

Lines changed: 8 additions & 8 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.46"
112+
version = "4.5.47"
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.46", default-features = false }
190-
clap_derive = { path = "./clap_derive", version = "=4.5.45", optional = true }
189+
clap_builder = { path = "./clap_builder", version = "=4.5.47", default-features = false }
190+
clap_derive = { path = "./clap_derive", version = "=4.5.47", 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.46"
3+
version = "4.5.47"
44
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
55
categories = ["command-line-interface"]
66
keywords = [

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.5.45"
3+
version = "4.5.47"
44
description = "Parse command line argument by defining a struct, derive crate."
55
categories = ["command-line-interface", "development-tools::procedural-macro-helpers"]
66
keywords = [

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//! - [Cookbook][_cookbook]
1212
//! - [FAQ][_faq]
1313
//! - [Discussions](https://github.com/clap-rs/clap/discussions)
14-
//! - [CHANGELOG](https://github.com/clap-rs/clap/blob/v4.5.46/CHANGELOG.md) (includes major version migration
14+
//! - [CHANGELOG](https://github.com/clap-rs/clap/blob/v4.5.47/CHANGELOG.md) (includes major version migration
1515
//! guides)
1616
//!
1717
//! ## Aspirations

0 commit comments

Comments
 (0)