chore: Release

This commit is contained in:
Ed Page
2026-01-02 15:54:23 -06:00
parent f04062b668
commit 4ecbf54ac3
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.54] - 2026-01-02
### Fixes
- *(help)* Move `[default]` to its own paragraph when `PossibleValue::help` is present in `--help`
@@ -4880,7 +4882,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.53...HEAD
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.54...HEAD
[4.5.54]: https://github.com/clap-rs/clap/compare/v4.5.53...v4.5.54
[4.5.53]: https://github.com/clap-rs/clap/compare/v4.5.52...v4.5.53
[4.5.52]: https://github.com/clap-rs/clap/compare/v4.5.51...v4.5.52
[4.5.51]: https://github.com/clap-rs/clap/compare/v4.5.50...v4.5.51

View File

@@ -3,8 +3,8 @@ cff-version: 1.2.0
message: Please cite this crate using these information.
# Version information.
date-released: 2025-11-19
version: 4.5.53
date-released: 2026-01-02
version: 4.5.54
# 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.53"
version = "4.5.54"
dependencies = [
"automod",
"clap-cargo",
"clap_builder 4.5.53",
"clap_builder 4.5.54",
"clap_derive",
"jiff",
"rustversion",
@@ -460,7 +460,7 @@ dependencies = [
name = "clap_bench"
version = "0.0.0"
dependencies = [
"clap 4.5.53",
"clap 4.5.54",
"divan",
"lazy_static",
]
@@ -480,7 +480,7 @@ dependencies = [
[[package]]
name = "clap_builder"
version = "4.5.53"
version = "4.5.54"
dependencies = [
"anstream",
"anstyle",
@@ -501,7 +501,7 @@ name = "clap_complete"
version = "4.5.64"
dependencies = [
"automod",
"clap 4.5.53",
"clap 4.5.54",
"clap_lex 0.7.6",
"completest",
"completest-pty",
@@ -515,7 +515,7 @@ dependencies = [
name = "clap_complete_nushell"
version = "4.5.10"
dependencies = [
"clap 4.5.53",
"clap 4.5.54",
"clap_complete",
"completest",
"completest-nu",
@@ -552,7 +552,7 @@ name = "clap_mangen"
version = "0.2.31"
dependencies = [
"automod",
"clap 4.5.53",
"clap 4.5.54",
"roff",
"snapbox",
]

View File

@@ -109,7 +109,7 @@ lto = true
[package]
name = "clap"
version = "4.5.53"
version = "4.5.54"
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.53", default-features = false }
clap_builder = { path = "./clap_builder", version = "=4.5.54", 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.53"
version = "4.5.54"
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.53/CHANGELOG.md) (includes major version migration
//! - [CHANGELOG](https://github.com/clap-rs/clap/blob/v4.5.54/CHANGELOG.md) (includes major version migration
//! guides)
//!
//! ## Aspirations