Skip to content

Commit 352e99f

Browse files
committed
chore: Release
1 parent 5d63daf commit 352e99f

File tree

7 files changed

+20
-17
lines changed

7 files changed

+20
-17
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2222
<!-- next-header -->
2323
## [Unreleased] - ReleaseDate
2424

25+
## [4.5.32] - 2025-03-10
26+
2527
### Features
2628

2729
- Add `Error::remove`
@@ -4735,7 +4737,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
47354737
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
47364738

47374739
<!-- next-url -->
4738-
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.31...HEAD
4740+
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.32...HEAD
4741+
[4.5.32]: https://github.com/clap-rs/clap/compare/v4.5.31...v4.5.32
47394742
[4.5.31]: https://github.com/clap-rs/clap/compare/v4.5.30...v4.5.31
47404743
[4.5.30]: https://github.com/clap-rs/clap/compare/v4.5.29...v4.5.30
47414744
[4.5.29]: https://github.com/clap-rs/clap/compare/v4.5.28...v4.5.29

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: 2025-02-24
7-
version: 4.5.31
6+
date-released: 2025-03-10
7+
version: 4.5.32
88

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

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ blocks_in_conditions = "allow"
9999

100100
[package]
101101
name = "clap"
102-
version = "4.5.31"
102+
version = "4.5.32"
103103
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
104104
categories = ["command-line-interface"]
105105
keywords = [
@@ -176,8 +176,8 @@ unstable-markdown = ["clap_derive/unstable-markdown"]
176176
bench = false
177177

178178
[dependencies]
179-
clap_builder = { path = "./clap_builder", version = "=4.5.31", default-features = false }
180-
clap_derive = { path = "./clap_derive", version = "=4.5.28", optional = true }
179+
clap_builder = { path = "./clap_builder", version = "=4.5.32", default-features = false }
180+
clap_derive = { path = "./clap_derive", version = "=4.5.32", optional = true }
181181

182182
[dev-dependencies]
183183
trybuild = "1.0.91"

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.31"
3+
version = "4.5.32"
44
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
55
categories = ["command-line-interface"]
66
keywords = [

clap_derive/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_derive"
3-
version = "4.5.28"
3+
version = "4.5.32"
44
description = "Parse command line argument by defining a struct, derive crate."
55
categories = ["command-line-interface", "development-tools::procedural-macro-helpers"]
66
keywords = [

src/lib.rs

Lines changed: 1 addition & 1 deletion
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.31/CHANGELOG.md) (includes major version migration
14+
//! - [CHANGELOG](https://github.com/clap-rs/clap/blob/v4.5.32/CHANGELOG.md) (includes major version migration
1515
//! guides)
1616
//!
1717
//! ## Aspirations

0 commit comments

Comments
 (0)