chore: Release

This commit is contained in:
Ed Page 2022-09-29 09:27:13 -05:00
parent d25d5b696d
commit 337a9e089b
3 changed files with 10 additions and 7 deletions

View file

@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate
## [4.0.3] - 2022-09-29
### Fixes
- *(error)* Quote literals consistently
@ -3866,7 +3868,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.2...HEAD
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.0.3...HEAD
[4.0.3]: https://github.com/clap-rs/clap/compare/v4.0.2...v4.0.3
[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

10
Cargo.lock generated
View file

@ -110,7 +110,7 @@ dependencies = [
[[package]]
name = "clap"
version = "4.0.2"
version = "4.0.3"
dependencies = [
"atty",
"backtrace",
@ -137,7 +137,7 @@ dependencies = [
name = "clap_bench"
version = "0.0.0"
dependencies = [
"clap 4.0.2",
"clap 4.0.3",
"criterion",
"lazy_static",
]
@ -146,7 +146,7 @@ dependencies = [
name = "clap_complete"
version = "4.0.1"
dependencies = [
"clap 4.0.2",
"clap 4.0.3",
"clap_lex",
"is_executable",
"os_str_bytes",
@ -161,7 +161,7 @@ dependencies = [
name = "clap_complete_fig"
version = "4.0.0"
dependencies = [
"clap 4.0.2",
"clap 4.0.3",
"clap_complete",
"snapbox",
]
@ -188,7 +188,7 @@ dependencies = [
name = "clap_mangen"
version = "0.2.1"
dependencies = [
"clap 4.0.2",
"clap 4.0.3",
"roff",
"snapbox",
]

View file

@ -10,7 +10,7 @@ members = [
[package]
name = "clap"
version = "4.0.2"
version = "4.0.3"
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
repository = "https://github.com/clap-rs/clap"
categories = ["command-line-interface"]