Skip to content

Commit 5e4facf

Browse files
committed
chore: Release
1 parent 8880b0a commit 5e4facf

File tree

6 files changed

+17
-14
lines changed

6 files changed

+17
-14
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.4] - 2024-03-25
24+
2325
### Fixes
2426

2527
- *(derive)* Allow non-literal `#[arg(id)]` attributes again
@@ -4565,7 +4567,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
45654567
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
45664568

45674569
<!-- next-url -->
4568-
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.3...HEAD
4570+
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.4...HEAD
4571+
[4.5.4]: https://github.com/clap-rs/clap/compare/v4.5.3...v4.5.4
45694572
[4.5.3]: https://github.com/clap-rs/clap/compare/v4.5.2...v4.5.3
45704573
[4.5.2]: https://github.com/clap-rs/clap/compare/v4.5.1...v4.5.2
45714574
[4.5.1]: https://github.com/clap-rs/clap/compare/v4.5.0...v4.5.1

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-03-15
7-
version: 4.5.3
6+
date-released: 2024-03-25
7+
version: 4.5.4
88

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

Cargo.lock

+7-7
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
@@ -27,7 +27,7 @@ include = [
2727

2828
[package]
2929
name = "clap"
30-
version = "4.5.3"
30+
version = "4.5.4"
3131
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
3232
repository = "https://github.com/clap-rs/clap"
3333
categories = ["command-line-interface"]
@@ -103,7 +103,7 @@ bench = false
103103

104104
[dependencies]
105105
clap_builder = { path = "./clap_builder", version = "=4.5.2", default-features = false }
106-
clap_derive = { path = "./clap_derive", version = "=4.5.3", optional = true }
106+
clap_derive = { path = "./clap_derive", version = "=4.5.4", optional = true }
107107

108108
[dev-dependencies]
109109
trybuild = "1.0.89"

clap_derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clap_derive"
3-
version = "4.5.3"
3+
version = "4.5.4"
44
description = "Parse command line argument by defining a struct, derive crate."
55
repository = "https://github.com/clap-rs/clap/tree/master/clap_derive"
66
categories = ["command-line-interface", "development-tools::procedural-macro-helpers"]

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.3/CHANGELOG.md) (includes major version migration
14+
//! - [CHANGELOG](https://github.com/clap-rs/clap/blob/v4.5.4/CHANGELOG.md) (includes major version migration
1515
//! guides)
1616
//!
1717
//! ## Aspirations

0 commit comments

Comments
 (0)