Skip to content

Commit fcda411

Browse files
committed
chore: Release
1 parent 1b3f5c0 commit fcda411

File tree

6 files changed

+20
-17
lines changed

6 files changed

+20
-17
lines changed

CHANGELOG.md

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

21+
## [4.3.12] - 2023-07-14
22+
2123
### Fixes
2224

2325
- *(derive)* Don't error on enum variant field attributes
@@ -4333,7 +4335,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
43334335
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
43344336

43354337
<!-- next-url -->
4336-
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.3.11...HEAD
4338+
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.3.12...HEAD
4339+
[4.3.12]: https://github.com/clap-rs/clap/compare/v4.3.11...v4.3.12
43374340
[4.3.11]: https://github.com/clap-rs/clap/compare/v4.3.10...v4.3.11
43384341
[4.3.10]: https://github.com/clap-rs/clap/compare/v4.3.9...v4.3.10
43394342
[4.3.9]: https://github.com/clap-rs/clap/compare/v4.3.8...v4.3.9

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: 2023-07-05
7-
version: 4.3.11
6+
date-released: 2023-07-14
7+
version: 4.3.12
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
@@ -27,7 +27,7 @@ include = [
2727

2828
[package]
2929
name = "clap"
30-
version = "4.3.11"
30+
version = "4.3.12"
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"]
@@ -101,8 +101,8 @@ unstable-styles = ["clap_builder/unstable-styles"]
101101
bench = false
102102

103103
[dependencies]
104-
clap_builder = { path = "./clap_builder", version = "=4.3.11", default-features = false }
105-
clap_derive = { path = "./clap_derive", version = "=4.3.2", optional = true }
104+
clap_builder = { path = "./clap_builder", version = "=4.3.12", default-features = false }
105+
clap_derive = { path = "./clap_derive", version = "=4.3.12", optional = true }
106106
once_cell = { version = "1.12.0", optional = true }
107107

108108
[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.3.11"
3+
version = "4.3.12"
44
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
55
repository = "https://github.com/clap-rs/clap"
66
categories = ["command-line-interface"]

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.3.2"
3+
version = "4.3.12"
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"]

0 commit comments

Comments
 (0)