Skip to content

Commit 3262016

Browse files
committed
chore: Release
1 parent 757f95b commit 3262016

File tree

11 files changed

+37
-25
lines changed

11 files changed

+37
-25
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7-
## 5.0.0 - ReleaseDate
7+
## 5.0.0 - 2022-11-24
88

99
### Breaking Changes
1010

@@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1313
<!-- next-header -->
1414
## [Unreleased] - ReleaseDate
1515

16+
## [4.0.27] - 2022-11-24
17+
1618
### Features
1719

1820
- Have `Arg::value_parser` accept `Vec<impl Into<PossibleValue>>`
@@ -4031,7 +4033,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
40314033
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
40324034

40334035
<!-- next-url -->
4034-
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.0.26...HEAD
4036+
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.0.27...HEAD
4037+
[4.0.27]: https://github.com/clap-rs/clap/compare/v4.0.26...v4.0.27
40354038
[4.0.26]: https://github.com/clap-rs/clap/compare/v4.0.25...v4.0.26
40364039
[4.0.25]: https://github.com/clap-rs/clap/compare/v4.0.24...v4.0.25
40374040
[4.0.24]: https://github.com/clap-rs/clap/compare/v4.0.23...v4.0.24

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ members = [
1010

1111
[package]
1212
name = "clap"
13-
version = "4.0.26"
13+
version = "4.0.27"
1414
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
1515
repository = "https://github.com/clap-rs/clap"
1616
categories = ["command-line-interface"]

clap_complete/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
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+
## [4.0.6] - 2022-11-24
11+
1012
## [4.0.5] - 2022-11-07
1113

1214
### Features
@@ -93,7 +95,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
9395
## [3.0.1] - 2022-01-03
9496

9597
<!-- next-url -->
96-
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete-v4.0.5...HEAD
98+
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete-v4.0.6...HEAD
99+
[4.0.6]: https://github.com/clap-rs/clap/compare/clap_complete-v4.0.5...clap_complete-v4.0.6
97100
[4.0.5]: https://github.com/clap-rs/clap/compare/clap_complete-v4.0.4...clap_complete-v4.0.5
98101
[4.0.4]: https://github.com/clap-rs/clap/compare/clap_complete-v4.0.3...clap_complete-v4.0.4
99102
[4.0.3]: https://github.com/clap-rs/clap/compare/clap_complete-v4.0.2...clap_complete-v4.0.3

clap_complete/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clap_complete"
3-
version = "4.0.5"
3+
version = "4.0.6"
44
description = "Generate shell completion scripts for your clap::Command"
55
repository = "https://github.com/clap-rs/clap/tree/master/clap_complete"
66
categories = ["command-line-interface"]

clap_complete/README.md

Lines changed: 4 additions & 4 deletions
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-v4.0.5/LICENSE-APACHE)
9-
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_complete-v4.0.5/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-v4.0.6/LICENSE-APACHE)
9+
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_complete-v4.0.6/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-v4.0.5/clap_complete/CONTRIBUTING.md)
17-
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v4.0.5/README.md#sponsors)
16+
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_complete-v4.0.6/clap_complete/CONTRIBUTING.md)
17+
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v4.0.6/README.md#sponsors)
1818

1919
## About
2020

clap_complete_fig/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
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+
## [4.0.2] - 2022-11-24
11+
1012
## [4.0.1] - 2022-10-18
1113

1214
## [4.0.0] - 2022-09-28
@@ -55,7 +57,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
5557
## [3.0.1] - 2022-01-03
5658

5759
<!-- next-url -->
58-
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v4.0.1...HEAD
60+
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v4.0.2...HEAD
61+
[4.0.2]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v4.0.1...clap_complete_fig-v4.0.2
5962
[4.0.1]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v4.0.0...clap_complete_fig-v4.0.1
6063
[4.0.0]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v3.2.4...clap_complete_fig-v4.0.0
6164
[3.2.4]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v3.2.3...clap_complete_fig-v3.2.4

clap_complete_fig/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clap_complete_fig"
3-
version = "4.0.1"
3+
version = "4.0.2"
44
description = "A generator library used with clap for Fig completion scripts"
55
repository = "https://github.com/clap-rs/clap/tree/master/clap_complete_fig"
66
categories = ["command-line-interface"]

clap_mangen/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
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+
## [0.2.5] - 2022-11-24
11+
1012
## [0.2.4] - 2022-10-31
1113

1214
### Fixes
@@ -62,7 +64,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6264
- Expanded the documentation
6365

6466
<!-- next-url -->
65-
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_mangen-v0.2.4...HEAD
67+
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_mangen-v0.2.5...HEAD
68+
[0.2.5]: https://github.com/clap-rs/clap/compare/clap_mangen-v0.2.4...clap_mangen-v0.2.5
6669
[0.2.4]: https://github.com/clap-rs/clap/compare/clap_mangen-v0.2.3...clap_mangen-v0.2.4
6770
[0.2.3]: https://github.com/clap-rs/clap/compare/clap_mangen-v0.2.2...clap_mangen-v0.2.3
6871
[0.2.2]: https://github.com/clap-rs/clap/compare/clap_mangen-v0.2.1...clap_mangen-v0.2.2

clap_mangen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clap_mangen"
3-
version = "0.2.4"
3+
version = "0.2.5"
44
description = "A manpage generator for clap"
55
repository = "https://github.com/clap-rs/clap/tree/master/clap_mangen"
66
categories = ["command-line-interface"]

0 commit comments

Comments
 (0)