mirror of
https://github.com/clap-rs/clap
synced 2025-03-04 15:27:16 +00:00
chore: Release
This commit is contained in:
parent
8830afb6df
commit
d9906eb150
10 changed files with 27 additions and 24 deletions
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|||
<!-- next-header -->
|
||||
## [Unreleased] - ReleaseDate
|
||||
|
||||
## [3.0.2] - 2022-01-04
|
||||
|
||||
### Fixes
|
||||
|
||||
- Ignore `Last` when checking hyphen values (see #3249 for details)
|
||||
|
@ -3025,7 +3027,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.0.1...HEAD
|
||||
[Unreleased]: https://github.com/clap-rs/clap/compare/v3.0.2...HEAD
|
||||
[3.0.2]: https://github.com/clap-rs/clap/compare/v3.0.1...v3.0.2
|
||||
[3.0.1]: https://github.com/clap-rs/clap/compare/v3.0.0...v3.0.1
|
||||
[3.0.0]: https://github.com/clap-rs/clap/compare/v2.34.0...v3.0.0
|
||||
[2.34.0]: https://github.com/clap-rs/clap/compare/v2.33.4...v2.34.0
|
||||
|
|
|
@ -9,7 +9,7 @@ members = [
|
|||
|
||||
[package]
|
||||
name = "clap"
|
||||
version = "3.0.1"
|
||||
version = "3.0.2"
|
||||
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
|
||||
repository = "https://github.com/clap-rs/clap"
|
||||
documentation = "https://docs.rs/clap/"
|
||||
|
|
18
README.md
18
README.md
|
@ -5,8 +5,8 @@
|
|||
|
||||
[](https://crates.io/crates/clap)
|
||||
[](https://crates.io/crates/clap)
|
||||
[](https://github.com/clap-rs/clap/blob/v3.0.1/LICENSE-APACHE)
|
||||
[](https://github.com/clap-rs/clap/blob/v3.0.1/LICENSE-MIT)
|
||||
[](https://github.com/clap-rs/clap/blob/v3.0.2/LICENSE-APACHE)
|
||||
[](https://github.com/clap-rs/clap/blob/v3.0.2/LICENSE-MIT)
|
||||
[](https://github.com/clap-rs/clap/actions/workflows/ci.yml?query=branch%3Astaging)
|
||||
[](https://coveralls.io/github/clap-rs/clap?branch=master)
|
||||
[](https://github.com/clap-rs/clap/graphs/contributors)
|
||||
|
@ -14,15 +14,15 @@
|
|||
Dual-licensed under [Apache 2.0](LICENSE-APACHE) or [MIT](LICENSE-MIT).
|
||||
|
||||
1. [About](#about)
|
||||
2. Tutorial: [Builder API](https://github.com/clap-rs/clap/blob/v3.0.1/examples/tutorial_builder/README.md), [Derive API](https://github.com/clap-rs/clap/blob/v3.0.1/examples/tutorial_derive/README.md)
|
||||
3. [Examples](https://github.com/clap-rs/clap/blob/v3.0.1/examples/README.md)
|
||||
2. Tutorial: [Builder API](https://github.com/clap-rs/clap/blob/v3.0.2/examples/tutorial_builder/README.md), [Derive API](https://github.com/clap-rs/clap/blob/v3.0.2/examples/tutorial_derive/README.md)
|
||||
3. [Examples](https://github.com/clap-rs/clap/blob/v3.0.2/examples/README.md)
|
||||
4. [API Reference](https://docs.rs/clap)
|
||||
- [Derive Reference](https://github.com/clap-rs/clap/blob/v3.0.1/examples/derive_ref/README.md)
|
||||
- [Derive Reference](https://github.com/clap-rs/clap/blob/v3.0.2/examples/derive_ref/README.md)
|
||||
- [Feature Flags](#feature-flags)
|
||||
5. [CHANGELOG](https://github.com/clap-rs/clap/blob/v3.0.1/CHANGELOG.md)
|
||||
6. [FAQ](https://github.com/clap-rs/clap/blob/v3.0.1/docs/FAQ.md)
|
||||
5. [CHANGELOG](https://github.com/clap-rs/clap/blob/v3.0.2/CHANGELOG.md)
|
||||
6. [FAQ](https://github.com/clap-rs/clap/blob/v3.0.2/docs/FAQ.md)
|
||||
7. [Questions & Discussions](https://github.com/clap-rs/clap/discussions)
|
||||
8. [Contributing](https://github.com/clap-rs/clap/blob/v3.0.1/CONTRIBUTING.md)
|
||||
8. [Contributing](https://github.com/clap-rs/clap/blob/v3.0.2/CONTRIBUTING.md)
|
||||
8. [Sponsors](#sponsors)
|
||||
|
||||
## About
|
||||
|
@ -59,7 +59,7 @@ fn main() {
|
|||
Add this to `Cargo.toml`:
|
||||
```toml
|
||||
[dependencies]
|
||||
clap = { version = "3.0.1", features = ["derive"] }
|
||||
clap = { version = "3.0.2", features = ["derive"] }
|
||||
```
|
||||
```bash
|
||||
$ demo --help
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "clap_complete"
|
||||
version = "3.0.1"
|
||||
version = "3.0.2"
|
||||
edition = "2018"
|
||||
include = [
|
||||
"src/**/*",
|
||||
|
|
|
@ -5,16 +5,16 @@
|
|||
|
||||
[](https://crates.io/crates/clap_complete)
|
||||
[](https://crates.io/crates/clap_complete)
|
||||
[](https://github.com/clap-rs/clap/blob/clap_complete-v3.0.1/LICENSE-APACHE)
|
||||
[](https://github.com/clap-rs/clap/blob/clap_complete-v3.0.1/LICENSE-MIT)
|
||||
[](https://github.com/clap-rs/clap/blob/clap_complete-v3.0.2/LICENSE-APACHE)
|
||||
[](https://github.com/clap-rs/clap/blob/clap_complete-v3.0.2/LICENSE-MIT)
|
||||
|
||||
Dual-licensed under [Apache 2.0](LICENSE-APACHE) or [MIT](LICENSE-MIT).
|
||||
|
||||
1. [About](#about)
|
||||
2. [API Reference](https://docs.rs/clap_complete)
|
||||
3. [Questions & Discussions](https://github.com/clap-rs/clap/discussions)
|
||||
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_complete-v3.0.1/clap_complete/CCONTRIBUTING.md)
|
||||
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v3.0.1/README.md#sponsors)
|
||||
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_complete-v3.0.2/clap_complete/CCONTRIBUTING.md)
|
||||
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v3.0.2/README.md#sponsors)
|
||||
|
||||
## About
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "clap_complete_fig"
|
||||
version = "3.0.0"
|
||||
version = "3.0.1"
|
||||
edition = "2018"
|
||||
include = [
|
||||
"src/**/*",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "clap_derive"
|
||||
version = "3.0.1"
|
||||
version = "3.0.2"
|
||||
edition = "2018"
|
||||
include = [
|
||||
"src/**/*",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "clap_generate"
|
||||
version = "3.0.0"
|
||||
version = "3.0.1"
|
||||
edition = "2018"
|
||||
include = [
|
||||
"src/**/*",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "clap_generate_fig"
|
||||
version = "3.0.0"
|
||||
version = "3.0.1"
|
||||
edition = "2018"
|
||||
include = [
|
||||
"src/**/*",
|
||||
|
|
|
@ -20,7 +20,7 @@ use std::ffi::OsString;
|
|||
/// See also [`Subcommand`] and [`Args`].
|
||||
///
|
||||
/// See the
|
||||
/// [derive reference](https://github.com/clap-rs/clap/blob/v3.0.1/examples/derive_ref/README.md)
|
||||
/// [derive reference](https://github.com/clap-rs/clap/blob/v3.0.2/examples/derive_ref/README.md)
|
||||
/// for attributes and best practices.
|
||||
///
|
||||
/// **NOTE:** Deriving requires the `derive` feature flag
|
||||
|
@ -285,7 +285,7 @@ pub trait FromArgMatches: Sized {
|
|||
/// - `Variant(ChildArgs)`: No attribute is used with enum variants that impl `Args`.
|
||||
///
|
||||
/// See the
|
||||
/// [derive reference](https://github.com/clap-rs/clap/blob/v3.0.1/examples/derive_ref/README.md)
|
||||
/// [derive reference](https://github.com/clap-rs/clap/blob/v3.0.2/examples/derive_ref/README.md)
|
||||
/// for attributes and best practices.
|
||||
///
|
||||
/// **NOTE:** Deriving requires the `derive` feature flag
|
||||
|
@ -329,7 +329,7 @@ pub trait Args: FromArgMatches + Sized {
|
|||
/// `Subcommand`.
|
||||
///
|
||||
/// See the
|
||||
/// [derive reference](https://github.com/clap-rs/clap/blob/v3.0.1/examples/derive_ref/README.md)
|
||||
/// [derive reference](https://github.com/clap-rs/clap/blob/v3.0.2/examples/derive_ref/README.md)
|
||||
/// for attributes and best practices.
|
||||
///
|
||||
/// **NOTE:** Deriving requires the `derive` feature flag
|
||||
|
@ -373,7 +373,7 @@ pub trait Subcommand: FromArgMatches + Sized {
|
|||
/// - Allowing using the `#[clap(default_value_t)]` attribute without implementing `Display`.
|
||||
///
|
||||
/// See the
|
||||
/// [derive reference](https://github.com/clap-rs/clap/blob/v3.0.1/examples/derive_ref/README.md)
|
||||
/// [derive reference](https://github.com/clap-rs/clap/blob/v3.0.2/examples/derive_ref/README.md)
|
||||
/// for attributes and best practices.
|
||||
///
|
||||
/// **NOTE:** Deriving requires the `derive` feature flag
|
||||
|
|
Loading…
Add table
Reference in a new issue