chore: Release

This commit is contained in:
Ed Page
2025-10-29 09:21:04 -05:00
parent f18b67ec3d
commit d89d57dfb4
6 changed files with 17 additions and 14 deletions

View File

@@ -23,6 +23,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate
## [4.5.51] - 2025-10-29
### Fixes
- *(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)
* **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.50...HEAD
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.51...HEAD
[4.5.51]: https://github.com/clap-rs/clap/compare/v4.5.50...v4.5.51
[4.5.50]: https://github.com/clap-rs/clap/compare/v4.5.49...v4.5.50
[4.5.49]: https://github.com/clap-rs/clap/compare/v4.5.48...v4.5.49
[4.5.48]: https://github.com/clap-rs/clap/compare/v4.5.47...v4.5.48

View File

@@ -3,8 +3,8 @@ cff-version: 1.2.0
message: Please cite this crate using these information.
# Version information.
date-released: 2025-10-20
version: 4.5.50
date-released: 2025-10-29
version: 4.5.51
# Project information.
abstract: A full featured, fast Command Line Argument Parser for Rust

14
Cargo.lock generated
View File

@@ -432,11 +432,11 @@ dependencies = [
[[package]]
name = "clap"
version = "4.5.50"
version = "4.5.51"
dependencies = [
"automod",
"clap-cargo",
"clap_builder 4.5.50",
"clap_builder 4.5.51",
"clap_derive",
"jiff",
"rustversion",
@@ -460,7 +460,7 @@ dependencies = [
name = "clap_bench"
version = "0.0.0"
dependencies = [
"clap 4.5.50",
"clap 4.5.51",
"divan",
"lazy_static",
]
@@ -480,7 +480,7 @@ dependencies = [
[[package]]
name = "clap_builder"
version = "4.5.50"
version = "4.5.51"
dependencies = [
"anstream",
"anstyle",
@@ -501,7 +501,7 @@ name = "clap_complete"
version = "4.5.59"
dependencies = [
"automod",
"clap 4.5.50",
"clap 4.5.51",
"clap_lex 0.7.6",
"completest",
"completest-pty",
@@ -515,7 +515,7 @@ dependencies = [
name = "clap_complete_nushell"
version = "4.5.9"
dependencies = [
"clap 4.5.50",
"clap 4.5.51",
"clap_complete",
"completest",
"completest-nu",
@@ -552,7 +552,7 @@ name = "clap_mangen"
version = "0.2.31"
dependencies = [
"automod",
"clap 4.5.50",
"clap 4.5.51",
"roff",
"snapbox",
]

View File

@@ -109,7 +109,7 @@ lto = true
[package]
name = "clap"
version = "4.5.50"
version = "4.5.51"
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
categories = ["command-line-interface"]
keywords = [
@@ -186,7 +186,7 @@ unstable-markdown = ["clap_derive/unstable-markdown"]
bench = false
[dependencies]
clap_builder = { path = "./clap_builder", version = "=4.5.50", default-features = false }
clap_builder = { path = "./clap_builder", version = "=4.5.51", default-features = false }
clap_derive = { path = "./clap_derive", version = "=4.5.49", optional = true }
[dev-dependencies]

View File

@@ -1,6 +1,6 @@
[package]
name = "clap_builder"
version = "4.5.50"
version = "4.5.51"
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
categories = ["command-line-interface"]
keywords = [

View File

@@ -12,7 +12,7 @@
//! - [CLI Concepts][_concepts]
//! - [FAQ][_faq]
//! - [Discussions](https://github.com/clap-rs/clap/discussions)
//! - [CHANGELOG](https://github.com/clap-rs/clap/blob/v4.5.50/CHANGELOG.md) (includes major version migration
//! - [CHANGELOG](https://github.com/clap-rs/clap/blob/v4.5.51/CHANGELOG.md) (includes major version migration
//! guides)
//!
//! ## Aspirations