Skip to content

Commit d392b88

Browse files
committed
chore: Release
1 parent 1a19d48 commit d392b88

File tree

6 files changed

+23
-20
lines changed

6 files changed

+23
-20
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [3.0.1] - 2022-01-03
11+
1012
### Fixes
1113

1214
- Don't panic when getting number of values (#3241)
@@ -3018,7 +3020,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
30183020
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
30193021

30203022
<!-- next-url -->
3021-
[Unreleased]: https://github.com/clap-rs/clap/compare/v3.0.0...HEAD
3023+
[Unreleased]: https://github.com/clap-rs/clap/compare/v3.0.1...HEAD
3024+
[3.0.1]: https://github.com/clap-rs/clap/compare/v3.0.0...v3.0.1
30223025
[3.0.0]: https://github.com/clap-rs/clap/compare/v2.34.0...v3.0.0
30233026
[2.34.0]: https://github.com/clap-rs/clap/compare/v2.33.4...v2.34.0
30243027
[2.33.4]: https://github.com/clap-rs/clap/compare/v2.33.3...v2.33.4

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ members = [
99

1010
[package]
1111
name = "clap"
12-
version = "3.0.0"
12+
version = "3.0.1"
1313
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
1414
repository = "https://github.com/clap-rs/clap"
1515
documentation = "https://docs.rs/clap/"

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@
55
66
[![Crates.io](https://img.shields.io/crates/v/clap?style=flat-square)](https://crates.io/crates/clap)
77
[![Crates.io](https://img.shields.io/crates/d/clap?style=flat-square)](https://crates.io/crates/clap)
8-
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/v3.0.0/LICENSE-APACHE)
9-
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/v3.0.0/LICENSE-MIT)
8+
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/v3.0.1/LICENSE-APACHE)
9+
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/v3.0.1/LICENSE-MIT)
1010
[![Build Status](https://img.shields.io/github/workflow/status/clap-rs/clap/CI/staging?style=flat-square)](https://github.com/clap-rs/clap/actions/workflows/ci.yml?query=branch%3Astaging)
1111
[![Coverage Status](https://img.shields.io/coveralls/github/clap-rs/clap/master?style=flat-square)](https://coveralls.io/github/clap-rs/clap?branch=master)
1212
[![Contributors](https://img.shields.io/github/contributors/clap-rs/clap?style=flat-square)](https://github.com/clap-rs/clap/graphs/contributors)
1313

1414
Dual-licensed under [Apache 2.0](LICENSE-APACHE) or [MIT](LICENSE-MIT).
1515

1616
1. [About](#about)
17-
2. Tutorial: [Builder API](https://github.com/clap-rs/clap/blob/v3.0.0/examples/tutorial_builder/README.md), [Derive API](https://github.com/clap-rs/clap/blob/v3.0.0/examples/tutorial_derive/README.md)
18-
3. [Examples](https://github.com/clap-rs/clap/blob/v3.0.0/examples/README.md)
17+
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)
18+
3. [Examples](https://github.com/clap-rs/clap/blob/v3.0.1/examples/README.md)
1919
4. [API Reference](https://docs.rs/clap)
20-
- [Derive Reference](https://github.com/clap-rs/clap/blob/v3.0.0/examples/derive_ref/README.md)
20+
- [Derive Reference](https://github.com/clap-rs/clap/blob/v3.0.1/examples/derive_ref/README.md)
2121
- [Feature Flags](#feature-flags)
22-
5. [CHANGELOG](https://github.com/clap-rs/clap/blob/v3.0.0/CHANGELOG.md)
23-
6. [FAQ](https://github.com/clap-rs/clap/blob/v3.0.0/docs/FAQ.md)
22+
5. [CHANGELOG](https://github.com/clap-rs/clap/blob/v3.0.1/CHANGELOG.md)
23+
6. [FAQ](https://github.com/clap-rs/clap/blob/v3.0.1/docs/FAQ.md)
2424
7. [Questions & Discussions](https://github.com/clap-rs/clap/discussions)
25-
8. [Contributing](https://github.com/clap-rs/clap/blob/v3.0.0/CONTRIBUTING.md)
25+
8. [Contributing](https://github.com/clap-rs/clap/blob/v3.0.1/CONTRIBUTING.md)
2626
8. [Sponsors](#sponsors)
2727

2828
## About
@@ -59,7 +59,7 @@ fn main() {
5959
Add this to `Cargo.toml`:
6060
```toml
6161
[dependencies]
62-
clap = { version = "3.0.0", features = ["derive"] }
62+
clap = { version = "3.0.1", features = ["derive"] }
6363
```
6464
```bash
6565
$ demo --help

clap_complete/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clap_complete"
3-
version = "3.0.0"
3+
version = "3.0.1"
44
edition = "2018"
55
include = [
66
"src/**/*",

clap_complete/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
66
[![Crates.io](https://img.shields.io/crates/v/clap_complete?style=flat-square)](https://crates.io/crates/clap_complete)
77
[![Crates.io](https://img.shields.io/crates/d/clap_complete?style=flat-square)](https://crates.io/crates/clap_complete)
8-
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_complete-v3.0.0/LICENSE-APACHE)
9-
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_complete-v3.0.0/LICENSE-MIT)
8+
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_complete-v3.0.1/LICENSE-APACHE)
9+
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_complete-v3.0.1/LICENSE-MIT)
1010

1111
Dual-licensed under [Apache 2.0](LICENSE-APACHE) or [MIT](LICENSE-MIT).
1212

1313
1. [About](#about)
1414
2. [API Reference](https://docs.rs/clap_complete)
1515
3. [Questions & Discussions](https://github.com/clap-rs/clap/discussions)
16-
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_complete-v3.0.0/clap_complete/CCONTRIBUTING.md)
17-
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v3.0.0/README.md#sponsors)
16+
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_complete-v3.0.1/clap_complete/CCONTRIBUTING.md)
17+
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v3.0.1/README.md#sponsors)
1818

1919
## About
2020

src/derive.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use std::ffi::OsString;
2020
/// See also [`Subcommand`] and [`Args`].
2121
///
2222
/// See the
23-
/// [derive reference](https://github.com/clap-rs/clap/blob/v3.0.0/examples/derive_ref/README.md)
23+
/// [derive reference](https://github.com/clap-rs/clap/blob/v3.0.1/examples/derive_ref/README.md)
2424
/// for attributes and best practices.
2525
///
2626
/// **NOTE:** Deriving requires the `derive` feature flag
@@ -285,7 +285,7 @@ pub trait FromArgMatches: Sized {
285285
/// - `Variant(ChildArgs)`: No attribute is used with enum variants that impl `Args`.
286286
///
287287
/// See the
288-
/// [derive reference](https://github.com/clap-rs/clap/blob/v3.0.0/examples/derive_ref/README.md)
288+
/// [derive reference](https://github.com/clap-rs/clap/blob/v3.0.1/examples/derive_ref/README.md)
289289
/// for attributes and best practices.
290290
///
291291
/// **NOTE:** Deriving requires the `derive` feature flag
@@ -329,7 +329,7 @@ pub trait Args: FromArgMatches + Sized {
329329
/// `Subcommand`.
330330
///
331331
/// See the
332-
/// [derive reference](https://github.com/clap-rs/clap/blob/v3.0.0/examples/derive_ref/README.md)
332+
/// [derive reference](https://github.com/clap-rs/clap/blob/v3.0.1/examples/derive_ref/README.md)
333333
/// for attributes and best practices.
334334
///
335335
/// **NOTE:** Deriving requires the `derive` feature flag
@@ -373,7 +373,7 @@ pub trait Subcommand: FromArgMatches + Sized {
373373
/// - Allowing using the `#[clap(default_value_t)]` attribute without implementing `Display`.
374374
///
375375
/// See the
376-
/// [derive reference](https://github.com/clap-rs/clap/blob/v3.0.0/examples/derive_ref/README.md)
376+
/// [derive reference](https://github.com/clap-rs/clap/blob/v3.0.1/examples/derive_ref/README.md)
377377
/// for attributes and best practices.
378378
///
379379
/// **NOTE:** Deriving requires the `derive` feature flag

0 commit comments

Comments
 (0)