chore: Release

This commit is contained in:
Ed Page 2022-09-30 14:08:59 -05:00
parent b654130b14
commit 0bea4f252b
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 --> <!-- next-header -->
## [Unreleased] - ReleaseDate ## [Unreleased] - ReleaseDate
## [4.0.7] - 2022-09-30
### Features ### Features
- *(derive)* Populate implicit ArgGroup (#3165) - *(derive)* Populate implicit ArgGroup (#3165)
@ -3897,7 +3899,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)) * **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
<!-- next-url --> <!-- next-url -->
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.0.6...HEAD [Unreleased]: https://github.com/clap-rs/clap/compare/v4.0.7...HEAD
[4.0.7]: https://github.com/clap-rs/clap/compare/v4.0.6...v4.0.7
[4.0.6]: https://github.com/clap-rs/clap/compare/v4.0.5...v4.0.6 [4.0.6]: https://github.com/clap-rs/clap/compare/v4.0.5...v4.0.6
[4.0.5]: https://github.com/clap-rs/clap/compare/v4.0.4...v4.0.5 [4.0.5]: https://github.com/clap-rs/clap/compare/v4.0.4...v4.0.5
[4.0.4]: https://github.com/clap-rs/clap/compare/v4.0.3...v4.0.4 [4.0.4]: https://github.com/clap-rs/clap/compare/v4.0.3...v4.0.4

12
Cargo.lock generated
View file

@ -110,7 +110,7 @@ dependencies = [
[[package]] [[package]]
name = "clap" name = "clap"
version = "4.0.6" version = "4.0.7"
dependencies = [ dependencies = [
"atty", "atty",
"backtrace", "backtrace",
@ -137,7 +137,7 @@ dependencies = [
name = "clap_bench" name = "clap_bench"
version = "0.0.0" version = "0.0.0"
dependencies = [ dependencies = [
"clap 4.0.6", "clap 4.0.7",
"criterion", "criterion",
"lazy_static", "lazy_static",
] ]
@ -146,7 +146,7 @@ dependencies = [
name = "clap_complete" name = "clap_complete"
version = "4.0.2" version = "4.0.2"
dependencies = [ dependencies = [
"clap 4.0.6", "clap 4.0.7",
"clap_lex", "clap_lex",
"is_executable", "is_executable",
"os_str_bytes", "os_str_bytes",
@ -161,14 +161,14 @@ dependencies = [
name = "clap_complete_fig" name = "clap_complete_fig"
version = "4.0.0" version = "4.0.0"
dependencies = [ dependencies = [
"clap 4.0.6", "clap 4.0.7",
"clap_complete", "clap_complete",
"snapbox", "snapbox",
] ]
[[package]] [[package]]
name = "clap_derive" name = "clap_derive"
version = "4.0.6" version = "4.0.7"
dependencies = [ dependencies = [
"heck", "heck",
"proc-macro-error", "proc-macro-error",
@ -188,7 +188,7 @@ dependencies = [
name = "clap_mangen" name = "clap_mangen"
version = "0.2.2" version = "0.2.2"
dependencies = [ dependencies = [
"clap 4.0.6", "clap 4.0.7",
"roff", "roff",
"snapbox", "snapbox",
] ]

View file

@ -10,7 +10,7 @@ members = [
[package] [package]
name = "clap" name = "clap"
version = "4.0.6" version = "4.0.7"
description = "A simple to use, efficient, and full-featured Command Line Argument Parser" description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
repository = "https://github.com/clap-rs/clap" repository = "https://github.com/clap-rs/clap"
categories = ["command-line-interface"] categories = ["command-line-interface"]
@ -91,7 +91,7 @@ unstable-v5 = ["clap_derive?/unstable-v5", "deprecated"]
bench = false bench = false
[dependencies] [dependencies]
clap_derive = { path = "./clap_derive", version = "=4.0.6", optional = true } clap_derive = { path = "./clap_derive", version = "=4.0.7", optional = true }
clap_lex = { path = "./clap_lex", version = "0.3.0" } clap_lex = { path = "./clap_lex", version = "0.3.0" }
bitflags = "1.2" bitflags = "1.2"
unicase = { version = "2.6", optional = true } unicase = { version = "2.6", optional = true }

View file

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

View file

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