File tree Expand file tree Collapse file tree 11 files changed +37
-25
lines changed Expand file tree Collapse file tree 11 files changed +37
-25
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
6
6
7
- ## 5.0.0 - ReleaseDate
7
+ ## 5.0.0 - 2022-11-24
8
8
9
9
### Breaking Changes
10
10
@@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
13
13
<!-- next-header -->
14
14
## [ Unreleased] - ReleaseDate
15
15
16
+ ## [ 4.0.27] - 2022-11-24
17
+
16
18
### Features
17
19
18
20
- Have ` Arg::value_parser ` accept ` Vec<impl Into<PossibleValue>> `
@@ -4031,7 +4033,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
4031
4033
* ** arg** allow lifetimes other than 'static in arguments ([ 9e8c1fb9] ( https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5 ) )
4032
4034
4033
4035
<!-- 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
4035
4038
[ 4.0.26 ] : https://github.com/clap-rs/clap/compare/v4.0.25...v4.0.26
4036
4039
[ 4.0.25 ] : https://github.com/clap-rs/clap/compare/v4.0.24...v4.0.25
4037
4040
[ 4.0.24 ] : https://github.com/clap-rs/clap/compare/v4.0.23...v4.0.24
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ members = [
10
10
11
11
[package ]
12
12
name = " clap"
13
- version = " 4.0.26 "
13
+ version = " 4.0.27 "
14
14
description = " A simple to use, efficient, and full-featured Command Line Argument Parser"
15
15
repository = " https://github.com/clap-rs/clap"
16
16
categories = [" command-line-interface" ]
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
<!-- next-header -->
8
8
## [ Unreleased] - ReleaseDate
9
9
10
+ ## [ 4.0.6] - 2022-11-24
11
+
10
12
## [ 4.0.5] - 2022-11-07
11
13
12
14
### Features
@@ -93,7 +95,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
93
95
## [ 3.0.1] - 2022-01-03
94
96
95
97
<!-- 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
97
100
[ 4.0.5 ] : https://github.com/clap-rs/clap/compare/clap_complete-v4.0.4...clap_complete-v4.0.5
98
101
[ 4.0.4 ] : https://github.com/clap-rs/clap/compare/clap_complete-v4.0.3...clap_complete-v4.0.4
99
102
[ 4.0.3 ] : https://github.com/clap-rs/clap/compare/clap_complete-v4.0.2...clap_complete-v4.0.3
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " clap_complete"
3
- version = " 4.0.5 "
3
+ version = " 4.0.6 "
4
4
description = " Generate shell completion scripts for your clap::Command"
5
5
repository = " https://github.com/clap-rs/clap/tree/master/clap_complete"
6
6
categories = [" command-line-interface" ]
Original file line number Diff line number Diff line change 5
5
6
6
[ ![ Crates.io] ( https://img.shields.io/crates/v/clap_complete?style=flat-square )] ( https://crates.io/crates/clap_complete )
7
7
[ ![ 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 )
10
10
11
11
Dual-licensed under [ Apache 2.0] ( LICENSE-APACHE ) or [ MIT] ( LICENSE-MIT ) .
12
12
13
13
1 . [ About] ( #about )
14
14
2 . [ API Reference] ( https://docs.rs/clap_complete )
15
15
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 )
18
18
19
19
## About
20
20
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
<!-- next-header -->
8
8
## [ Unreleased] - ReleaseDate
9
9
10
+ ## [ 4.0.2] - 2022-11-24
11
+
10
12
## [ 4.0.1] - 2022-10-18
11
13
12
14
## [ 4.0.0] - 2022-09-28
@@ -55,7 +57,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
55
57
## [ 3.0.1] - 2022-01-03
56
58
57
59
<!-- 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
59
62
[ 4.0.1 ] : https://github.com/clap-rs/clap/compare/clap_complete_fig-v4.0.0...clap_complete_fig-v4.0.1
60
63
[ 4.0.0 ] : https://github.com/clap-rs/clap/compare/clap_complete_fig-v3.2.4...clap_complete_fig-v4.0.0
61
64
[ 3.2.4 ] : https://github.com/clap-rs/clap/compare/clap_complete_fig-v3.2.3...clap_complete_fig-v3.2.4
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " clap_complete_fig"
3
- version = " 4.0.1 "
3
+ version = " 4.0.2 "
4
4
description = " A generator library used with clap for Fig completion scripts"
5
5
repository = " https://github.com/clap-rs/clap/tree/master/clap_complete_fig"
6
6
categories = [" command-line-interface" ]
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
<!-- next-header -->
8
8
## [ Unreleased] - ReleaseDate
9
9
10
+ ## [ 0.2.5] - 2022-11-24
11
+
10
12
## [ 0.2.4] - 2022-10-31
11
13
12
14
### Fixes
@@ -62,7 +64,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
62
64
- Expanded the documentation
63
65
64
66
<!-- 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
66
69
[ 0.2.4 ] : https://github.com/clap-rs/clap/compare/clap_mangen-v0.2.3...clap_mangen-v0.2.4
67
70
[ 0.2.3 ] : https://github.com/clap-rs/clap/compare/clap_mangen-v0.2.2...clap_mangen-v0.2.3
68
71
[ 0.2.2 ] : https://github.com/clap-rs/clap/compare/clap_mangen-v0.2.1...clap_mangen-v0.2.2
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " clap_mangen"
3
- version = " 0.2.4 "
3
+ version = " 0.2.5 "
4
4
description = " A manpage generator for clap"
5
5
repository = " https://github.com/clap-rs/clap/tree/master/clap_mangen"
6
6
categories = [" command-line-interface" ]
You can’t perform that action at this time.
0 commit comments