chore: Release

This commit is contained in:
Ed Page
2023-04-27 04:05:50 -05:00
parent bad2d76b75
commit 3bd502024e
5 changed files with 15 additions and 12 deletions

View File

@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate
## [3.2.25] - 2023-04-27
### Fixes
- *(derive)* Resolve warnings in generated code
@@ -3574,7 +3576,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
<!-- next-url -->
[Unreleased]: https://github.com/clap-rs/clap/compare/v3.2.24...HEAD
[Unreleased]: https://github.com/clap-rs/clap/compare/v3.2.25...HEAD
[3.2.25]: https://github.com/clap-rs/clap/compare/v3.2.24...v3.2.25
[3.2.24]: https://github.com/clap-rs/clap/compare/v3.2.23...v3.2.24
[3.2.23]: https://github.com/clap-rs/clap/compare/v3.2.22...v3.2.23
[3.2.22]: https://github.com/clap-rs/clap/compare/v3.2.21...v3.2.22

12
Cargo.lock generated
View File

@@ -128,7 +128,7 @@ dependencies = [
[[package]]
name = "clap"
version = "3.2.24"
version = "3.2.25"
dependencies = [
"atty",
"backtrace",
@@ -157,7 +157,7 @@ dependencies = [
name = "clap_bench"
version = "0.0.0"
dependencies = [
"clap 3.2.24",
"clap 3.2.25",
"criterion",
"lazy_static",
]
@@ -166,7 +166,7 @@ dependencies = [
name = "clap_complete"
version = "3.2.5"
dependencies = [
"clap 3.2.24",
"clap 3.2.25",
"clap_lex",
"is_executable",
"os_str_bytes",
@@ -182,14 +182,14 @@ dependencies = [
name = "clap_complete_fig"
version = "3.2.4"
dependencies = [
"clap 3.2.24",
"clap 3.2.25",
"clap_complete",
"snapbox",
]
[[package]]
name = "clap_derive"
version = "3.2.24"
version = "3.2.25"
dependencies = [
"heck",
"proc-macro-error",
@@ -209,7 +209,7 @@ dependencies = [
name = "clap_mangen"
version = "0.1.11"
dependencies = [
"clap 3.2.24",
"clap 3.2.25",
"roff",
"snapbox",
]

View File

@@ -10,7 +10,7 @@ members = [
[package]
name = "clap"
version = "3.2.24"
version = "3.2.25"
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
repository = "https://github.com/clap-rs/clap"
categories = ["command-line-interface"]
@@ -87,7 +87,7 @@ unstable-v4 = ["clap_derive/unstable-v4", "deprecated"]
bench = false
[dependencies]
clap_derive = { path = "./clap_derive", version = "=3.2.24", optional = true }
clap_derive = { path = "./clap_derive", version = "=3.2.25", optional = true }
clap_lex = { path = "./clap_lex", version = "0.2.2" }
bitflags = "1.2"
textwrap = { version = "0.16", default-features = false, features = [] }

View File

@@ -1,6 +1,6 @@
[package]
name = "clap_derive"
version = "3.2.24"
version = "3.2.25"
description = "Parse command line argument by defining a struct, derive crate."
repository = "https://github.com/clap-rs/clap/tree/master/clap_derive"
categories = ["command-line-interface", "development-tools::procedural-macro-helpers"]

View File

@@ -3,8 +3,8 @@
Macro implementation for clap's derives.
[docs.rs](https://docs.rs/clap)
- [Derive Tutorial](https://github.com/clap-rs/clap/blob/v3.2.24/examples/tutorial_derive/README.md)
- [Derive Reference](https://github.com/clap-rs/clap/blob/v3.2.24/examples/derive_ref/README.md)
- [Derive Tutorial](https://github.com/clap-rs/clap/blob/v3.2.25/examples/tutorial_derive/README.md)
- [Derive Reference](https://github.com/clap-rs/clap/blob/v3.2.25/examples/derive_ref/README.md)
## License