mirror of
https://github.com/clap-rs/clap
synced 2024-12-12 13:52:34 +00:00
chore: Release
This commit is contained in:
parent
d279f7f4e6
commit
4524127704
3 changed files with 10 additions and 7 deletions
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||
<!-- next-header -->
|
||||
## [Unreleased] - ReleaseDate
|
||||
|
||||
## [4.0.2] - 2022-09-28
|
||||
|
||||
### Fixes
|
||||
|
||||
- *(parser)* `SetFalse` should conflict with itself like `SetTrue` and `Set`
|
||||
|
@ -3858,7 +3860,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/v4.0.1...HEAD
|
||||
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.0.2...HEAD
|
||||
[4.0.2]: https://github.com/clap-rs/clap/compare/v4.0.1...v4.0.2
|
||||
[4.0.1]: https://github.com/clap-rs/clap/compare/v4.0.0...v4.0.1
|
||||
[4.0.0]: https://github.com/clap-rs/clap/compare/v3.2.18...v4.0.0
|
||||
[3.2.18]: https://github.com/clap-rs/clap/compare/v3.2.17...v3.2.18
|
||||
|
|
10
Cargo.lock
generated
10
Cargo.lock
generated
|
@ -110,7 +110,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "clap"
|
||||
version = "4.0.1"
|
||||
version = "4.0.2"
|
||||
dependencies = [
|
||||
"atty",
|
||||
"backtrace",
|
||||
|
@ -137,7 +137,7 @@ dependencies = [
|
|||
name = "clap_bench"
|
||||
version = "0.0.0"
|
||||
dependencies = [
|
||||
"clap 4.0.1",
|
||||
"clap 4.0.2",
|
||||
"criterion",
|
||||
"lazy_static",
|
||||
]
|
||||
|
@ -146,7 +146,7 @@ dependencies = [
|
|||
name = "clap_complete"
|
||||
version = "4.0.1"
|
||||
dependencies = [
|
||||
"clap 4.0.1",
|
||||
"clap 4.0.2",
|
||||
"clap_lex",
|
||||
"is_executable",
|
||||
"os_str_bytes",
|
||||
|
@ -161,7 +161,7 @@ dependencies = [
|
|||
name = "clap_complete_fig"
|
||||
version = "4.0.0"
|
||||
dependencies = [
|
||||
"clap 4.0.1",
|
||||
"clap 4.0.2",
|
||||
"clap_complete",
|
||||
"snapbox",
|
||||
]
|
||||
|
@ -188,7 +188,7 @@ dependencies = [
|
|||
name = "clap_mangen"
|
||||
version = "0.2.1"
|
||||
dependencies = [
|
||||
"clap 4.0.1",
|
||||
"clap 4.0.2",
|
||||
"roff",
|
||||
"snapbox",
|
||||
]
|
||||
|
|
|
@ -10,7 +10,7 @@ members = [
|
|||
|
||||
[package]
|
||||
name = "clap"
|
||||
version = "4.0.1"
|
||||
version = "4.0.2"
|
||||
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
|
||||
repository = "https://github.com/clap-rs/clap"
|
||||
categories = ["command-line-interface"]
|
||||
|
|
Loading…
Reference in a new issue