Skip to content

Commit 66b5a12

Browse files
committed
chore: Release
1 parent a83b724 commit 66b5a12

File tree

7 files changed

+20
-17
lines changed

7 files changed

+20
-17
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.13] - 2024-07-31
24+
2325
### Fixes
2426

2527
- *(derive)* Improve error message when `#[flatten]`ing an optional `#[group(skip)]`
@@ -4604,7 +4606,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
46044606
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
46054607

46064608
<!-- next-url -->
4607-
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.12...HEAD
4609+
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.13...HEAD
4610+
[4.5.13]: https://github.com/clap-rs/clap/compare/v4.5.12...v4.5.13
46084611
[4.5.12]: https://github.com/clap-rs/clap/compare/v4.5.11...v4.5.12
46094612
[4.5.11]: https://github.com/clap-rs/clap/compare/v4.5.10...v4.5.11
46104613
[4.5.10]: https://github.com/clap-rs/clap/compare/v4.5.9...v4.5.10

CITATION.cff

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ message: Please cite this crate using these information.
44

55
# Version information.
66
date-released: 2024-07-31
7-
version: 4.5.12
7+
version: 4.5.13
88

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

Cargo.lock

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

Cargo.toml

+3-3
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.12"
102+
version = "4.5.13"
103103
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
104104
categories = ["command-line-interface"]
105105
keywords = [
@@ -174,8 +174,8 @@ unstable-styles = ["clap_builder/unstable-styles"]
174174
bench = false
175175

176176
[dependencies]
177-
clap_builder = { path = "./clap_builder", version = "=4.5.12", default-features = false }
178-
clap_derive = { path = "./clap_derive", version = "=4.5.11", optional = true }
177+
clap_builder = { path = "./clap_builder", version = "=4.5.13", default-features = false }
178+
clap_derive = { path = "./clap_derive", version = "=4.5.13", optional = true }
179179

180180
[dev-dependencies]
181181
trybuild = "1.0.91"

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.12"
3+
version = "4.5.13"
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clap_derive"
3-
version = "4.5.11"
3+
version = "4.5.13"
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

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

0 commit comments

Comments
 (0)