Skip to content

Commit d89d57d

Browse files
committed
chore: Release
1 parent f18b67e commit d89d57d

File tree

6 files changed

+17
-14
lines changed

6 files changed

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

26+
## [4.5.51] - 2025-10-29
27+
2628
### Fixes
2729

2830
- *(help)* Correctly calculate padding for short flags that take a value
@@ -4862,7 +4864,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
48624864
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
48634865

48644866
<!-- next-url -->
4865-
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.50...HEAD
4867+
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.51...HEAD
4868+
[4.5.51]: https://github.com/clap-rs/clap/compare/v4.5.50...v4.5.51
48664869
[4.5.50]: https://github.com/clap-rs/clap/compare/v4.5.49...v4.5.50
48674870
[4.5.49]: https://github.com/clap-rs/clap/compare/v4.5.48...v4.5.49
48684871
[4.5.48]: https://github.com/clap-rs/clap/compare/v4.5.47...v4.5.48

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-10-20
7-
version: 4.5.50
6+
date-released: 2025-10-29
7+
version: 4.5.51
88

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

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
@@ -109,7 +109,7 @@ lto = true
109109

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

188188
[dependencies]
189-
clap_builder = { path = "./clap_builder", version = "=4.5.50", default-features = false }
189+
clap_builder = { path = "./clap_builder", version = "=4.5.51", default-features = false }
190190
clap_derive = { path = "./clap_derive", version = "=4.5.49", optional = true }
191191

192192
[dev-dependencies]

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

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
//! - [CLI Concepts][_concepts]
1313
//! - [FAQ][_faq]
1414
//! - [Discussions](https://github.com/clap-rs/clap/discussions)
15-
//! - [CHANGELOG](https://github.com/clap-rs/clap/blob/v4.5.50/CHANGELOG.md) (includes major version migration
15+
//! - [CHANGELOG](https://github.com/clap-rs/clap/blob/v4.5.51/CHANGELOG.md) (includes major version migration
1616
//! guides)
1717
//!
1818
//! ## Aspirations

0 commit comments

Comments
 (0)