Skip to content

Commit 5babafd

Browse files
committed
chore: Release
1 parent ac6b09c commit 5babafd

File tree

6 files changed

+18
-15
lines changed

6 files changed

+18
-15
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2020
<!-- next-header -->
2121
## [Unreleased] - ReleaseDate
2222

23+
## [4.5.22] - 2024-12-03
24+
2325
### Fixes
2426

2527
- *(assert)* Catch bugs with arguments requiring themself
@@ -4663,7 +4665,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
46634665
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
46644666

46654667
<!-- next-url -->
4666-
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.21...HEAD
4668+
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.22...HEAD
4669+
[4.5.22]: https://github.com/clap-rs/clap/compare/v4.5.21...v4.5.22
46674670
[4.5.21]: https://github.com/clap-rs/clap/compare/v4.5.20...v4.5.21
46684671
[4.5.20]: https://github.com/clap-rs/clap/compare/v4.5.19...v4.5.20
46694672
[4.5.19]: https://github.com/clap-rs/clap/compare/v4.5.18...v4.5.19

CITATION.cff

+2-2
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: 2024-11-13
7-
version: 4.5.21
6+
date-released: 2024-12-03
7+
version: 4.5.22
88

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

Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ blocks_in_conditions = "allow"
100100

101101
[package]
102102
name = "clap"
103-
version = "4.5.21"
103+
version = "4.5.22"
104104
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
105105
categories = ["command-line-interface"]
106106
keywords = [
@@ -176,7 +176,7 @@ unstable-derive-ui-tests = []
176176
bench = false
177177

178178
[dependencies]
179-
clap_builder = { path = "./clap_builder", version = "=4.5.21", default-features = false }
179+
clap_builder = { path = "./clap_builder", version = "=4.5.22", default-features = false }
180180
clap_derive = { path = "./clap_derive", version = "=4.5.18", optional = true }
181181

182182
[dev-dependencies]

clap_builder/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clap_builder"
3-
version = "4.5.21"
3+
version = "4.5.22"
44
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
55
categories = ["command-line-interface"]
66
keywords = [

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//! - [Cookbook][_cookbook]
1212
//! - [FAQ][_faq]
1313
//! - [Discussions](https://github.com/clap-rs/clap/discussions)
14-
//! - [CHANGELOG](https://github.com/clap-rs/clap/blob/v4.5.21/CHANGELOG.md) (includes major version migration
14+
//! - [CHANGELOG](https://github.com/clap-rs/clap/blob/v4.5.22/CHANGELOG.md) (includes major version migration
1515
//! guides)
1616
//!
1717
//! ## Aspirations

0 commit comments

Comments
 (0)