Skip to content

Commit 48c3b11

Browse files
committed
chore: Release
1 parent 4589490 commit 48c3b11

6 files changed

Lines changed: 17 additions & 14 deletions

File tree

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.57] - 2026-02-03
27+
2628
### Fixes
2729

2830
- Regression from 4.5.55 where having an argument with `.value_terminator("--")` caused problems with an argument with `.last(true)`
@@ -4898,7 +4900,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
48984900
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
48994901

49004902
<!-- next-url -->
4901-
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.56...HEAD
4903+
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.57...HEAD
4904+
[4.5.57]: https://github.com/clap-rs/clap/compare/v4.5.56...v4.5.57
49024905
[4.5.56]: https://github.com/clap-rs/clap/compare/v4.5.55...v4.5.56
49034906
[4.5.55]: https://github.com/clap-rs/clap/compare/v4.5.54...v4.5.55
49044907
[4.5.54]: https://github.com/clap-rs/clap/compare/v4.5.53...v4.5.54

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: 2026-01-29
7-
version: 4.5.56
6+
date-released: 2026-02-03
7+
version: 4.5.57
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
@@ -108,7 +108,7 @@ lto = true
108108

109109
[package]
110110
name = "clap"
111-
version = "4.5.56"
111+
version = "4.5.57"
112112
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
113113
categories = ["command-line-interface"]
114114
keywords = [
@@ -185,7 +185,7 @@ unstable-markdown = ["clap_derive/unstable-markdown"]
185185
bench = false
186186

187187
[dependencies]
188-
clap_builder = { path = "./clap_builder", version = "=4.5.56", default-features = false }
188+
clap_builder = { path = "./clap_builder", version = "=4.5.57", default-features = false }
189189
clap_derive = { path = "./clap_derive", version = "=4.5.55", optional = true }
190190

191191
[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.56"
3+
version = "4.5.57"
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.56/CHANGELOG.md) (includes major version migration
15+
//! - [CHANGELOG](https://github.com/clap-rs/clap/blob/v4.5.57/CHANGELOG.md) (includes major version migration
1616
//! guides)
1717
//!
1818
//! ## Aspirations

0 commit comments

Comments
 (0)