File tree Expand file tree Collapse file tree 9 files changed +27
-21
lines changed Expand file tree Collapse file tree 9 files changed +27
-21
lines changed Original file line number Diff line number Diff 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.53] - 2025-11-19
27+
2628### Features
2729
2830- Add ` default_values_if ` , ` default_values_ifs `
@@ -4874,7 +4876,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
48744876* ** arg** allow lifetimes other than 'static in arguments ([ 9e8c1fb9] ( https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5 ) )
48754877
48764878<!-- next-url -->
4877- [ Unreleased ] : https://github.com/clap-rs/clap/compare/v4.5.52...HEAD
4879+ [ Unreleased ] : https://github.com/clap-rs/clap/compare/v4.5.53...HEAD
4880+ [ 4.5.53 ] : https://github.com/clap-rs/clap/compare/v4.5.52...v4.5.53
48784881[ 4.5.52 ] : https://github.com/clap-rs/clap/compare/v4.5.51...v4.5.52
48794882[ 4.5.51 ] : https://github.com/clap-rs/clap/compare/v4.5.50...v4.5.51
48804883[ 4.5.50 ] : https://github.com/clap-rs/clap/compare/v4.5.49...v4.5.50
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ cff-version: 1.2.0
33message : Please cite this crate using these information.
44
55# Version information.
6- date-released : 2025-11-17
7- version : 4.5.52
6+ date-released : 2025-11-19
7+ version : 4.5.53
88
99# Project information.
1010abstract : A full featured, fast Command Line Argument Parser for Rust
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ lto = true
109109
110110[package ]
111111name = " clap"
112- version = " 4.5.52 "
112+ version = " 4.5.53 "
113113description = " A simple to use, efficient, and full-featured Command Line Argument Parser"
114114categories = [" command-line-interface" ]
115115keywords = [
@@ -186,7 +186,7 @@ unstable-markdown = ["clap_derive/unstable-markdown"]
186186bench = false
187187
188188[dependencies ]
189- clap_builder = { path = " ./clap_builder" , version = " =4.5.52 " , default-features = false }
189+ clap_builder = { path = " ./clap_builder" , version = " =4.5.53 " , default-features = false }
190190clap_derive = { path = " ./clap_derive" , version = " =4.5.49" , optional = true }
191191
192192[dev-dependencies ]
Original file line number Diff line number Diff line change 11[package ]
22name = " clap_builder"
3- version = " 4.5.52 "
3+ version = " 4.5.53 "
44description = " A simple to use, efficient, and full-featured Command Line Argument Parser"
55categories = [" command-line-interface" ]
66keywords = [
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77<!-- next-header -->
88## [ Unreleased] - ReleaseDate
99
10+ ## [ 4.5.61] - 2025-11-19
11+
1012## [ 4.5.60] - 2025-10-29
1113
1214### Fixes
@@ -608,7 +610,8 @@ MSRV changed to 1.64.0
608610## [ 3.0.1] - 2022-01-03
609611
610612<!-- next-url -->
611- [ Unreleased ] : https://github.com/clap-rs/clap/compare/clap_complete-v4.5.60...HEAD
613+ [ Unreleased ] : https://github.com/clap-rs/clap/compare/clap_complete-v4.5.61...HEAD
614+ [ 4.5.61 ] : https://github.com/clap-rs/clap/compare/clap_complete-v4.5.60...clap_complete-v4.5.61
612615[ 4.5.60 ] : https://github.com/clap-rs/clap/compare/clap_complete-v4.5.59...clap_complete-v4.5.60
613616[ 4.5.59 ] : https://github.com/clap-rs/clap/compare/clap_complete-v4.5.58...clap_complete-v4.5.59
614617[ 4.5.58 ] : https://github.com/clap-rs/clap/compare/clap_complete-v4.5.57...clap_complete-v4.5.58
Original file line number Diff line number Diff line change 11[package ]
22name = " clap_complete"
3- version = " 4.5.60 "
3+ version = " 4.5.61 "
44description = " Generate shell completion scripts for your clap::Command"
55categories = [" command-line-interface" ]
66keywords = [
Original file line number Diff line number Diff line change 55
66[ ![ Crates.io] ( https://img.shields.io/crates/v/clap_complete?style=flat-square )] ( https://crates.io/crates/clap_complete )
77[ ![ Crates.io] ( https://img.shields.io/crates/d/clap_complete?style=flat-square )] ( https://crates.io/crates/clap_complete )
8- [ ![ License] ( https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square )] ( https://github.com/clap-rs/clap/blob/clap_complete-v4.5.60 /LICENSE-APACHE )
9- [ ![ License] ( https://img.shields.io/badge/license-MIT-blue?style=flat-square )] ( https://github.com/clap-rs/clap/blob/clap_complete-v4.5.60 /LICENSE-MIT )
8+ [ ![ License] ( https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square )] ( https://github.com/clap-rs/clap/blob/clap_complete-v4.5.61 /LICENSE-APACHE )
9+ [ ![ License] ( https://img.shields.io/badge/license-MIT-blue?style=flat-square )] ( https://github.com/clap-rs/clap/blob/clap_complete-v4.5.61 /LICENSE-MIT )
1010
1111Dual-licensed under [ Apache 2.0] ( LICENSE-APACHE ) or [ MIT] ( LICENSE-MIT ) .
1212
13131 . [ About] ( #about )
14142 . [ API Reference] ( https://docs.rs/clap_complete )
15153 . [ Questions & Discussions] ( https://github.com/clap-rs/clap/discussions )
16- 4 . [ CONTRIBUTING] ( https://github.com/clap-rs/clap/blob/clap_complete-v4.5.60 /clap_complete/CONTRIBUTING.md )
17- 5 . [ Sponsors] ( https://github.com/clap-rs/clap/blob/clap_complete-v4.5.60 /README.md#sponsors )
16+ 4 . [ CONTRIBUTING] ( https://github.com/clap-rs/clap/blob/clap_complete-v4.5.61 /clap_complete/CONTRIBUTING.md )
17+ 5 . [ Sponsors] ( https://github.com/clap-rs/clap/blob/clap_complete-v4.5.61 /README.md#sponsors )
1818
1919## About
2020
Original file line number Diff line number Diff line change 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.52 /CHANGELOG.md) (includes major version migration
15+ //! - [CHANGELOG](https://github.com/clap-rs/clap/blob/v4.5.53 /CHANGELOG.md) (includes major version migration
1616//! guides)
1717//!
1818//! ## Aspirations
You can’t perform that action at this time.
0 commit comments