Skip to content

Commit 2e49645

Browse files
committed
chore: Release
1 parent 9c93ea7 commit 2e49645

File tree

13 files changed

+42
-30
lines changed

13 files changed

+42
-30
lines changed

CHANGELOG.md

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

23+
## [4.4.0] - 2023-08-24
24+
2325
### Compatibility
2426

2527
- Update MSRV to 1.70.0
@@ -4417,7 +4419,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
44174419
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
44184420

44194421
<!-- next-url -->
4420-
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.3.24...HEAD
4422+
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.4.0...HEAD
4423+
[4.4.0]: https://github.com/clap-rs/clap/compare/v4.3.24...v4.4.0
44214424
[4.3.24]: https://github.com/clap-rs/clap/compare/v4.3.23...v4.3.24
44224425
[4.3.23]: https://github.com/clap-rs/clap/compare/v4.3.22...v4.3.23
44234426
[4.3.22]: https://github.com/clap-rs/clap/compare/v4.3.21...v4.3.22

CITATION.cff

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ cff-version: 1.2.0
33
message: Please cite this crate using these information.
44

55
# Version information.
6-
date-released: 2023-08-23
7-
version: 4.3.24
6+
date-released: 2023-08-24
7+
version: 4.4.0
88

99
# Project information.
1010
abstract: A full featured, fast Command Line Argument Parser for Rust

Cargo.lock

+12-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ include = [
2727

2828
[package]
2929
name = "clap"
30-
version = "4.3.24"
30+
version = "4.4.0"
3131
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
3232
repository = "https://github.com/clap-rs/clap"
3333
categories = ["command-line-interface"]
@@ -101,8 +101,8 @@ unstable-styles = ["clap_builder/unstable-styles"]
101101
bench = false
102102

103103
[dependencies]
104-
clap_builder = { path = "./clap_builder", version = "=4.3.24", default-features = false }
105-
clap_derive = { path = "./clap_derive", version = "=4.3.12", optional = true }
104+
clap_builder = { path = "./clap_builder", version = "=4.4.0", default-features = false }
105+
clap_derive = { path = "./clap_derive", version = "=4.4.0", optional = true }
106106
once_cell = { version = "1.12.0", optional = true }
107107

108108
[dev-dependencies]

clap_builder/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clap_builder"
3-
version = "4.3.24"
3+
version = "4.4.0"
44
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
55
repository = "https://github.com/clap-rs/clap"
66
categories = ["command-line-interface"]

clap_complete/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+
## [4.4.0] - 2023-08-24
11+
1012
### Compatibility
1113

1214
- Update MSRV to 1.70.0
@@ -157,7 +159,8 @@ MSRV changed to 1.64.0
157159
## [3.0.1] - 2022-01-03
158160

159161
<!-- next-url -->
160-
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete-v4.3.2...HEAD
162+
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete-v4.4.0...HEAD
163+
[4.4.0]: https://github.com/clap-rs/clap/compare/clap_complete-v4.3.2...clap_complete-v4.4.0
161164
[4.3.2]: https://github.com/clap-rs/clap/compare/clap_complete-v4.3.1...clap_complete-v4.3.2
162165
[4.3.1]: https://github.com/clap-rs/clap/compare/clap_complete-v4.3.0...clap_complete-v4.3.1
163166
[4.3.0]: https://github.com/clap-rs/clap/compare/clap_complete-v4.2.3...clap_complete-v4.3.0

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 = "4.3.2"
3+
version = "4.4.0"
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

+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-v4.3.2/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.3.2/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.4.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-v4.4.0/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.3.2/clap_complete/CONTRIBUTING.md)
17-
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v4.3.2/README.md#sponsors)
16+
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_complete-v4.4.0/clap_complete/CONTRIBUTING.md)
17+
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_complete-v4.4.0/README.md#sponsors)
1818

1919
## About
2020

clap_complete_fig/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+
## [4.4.0] - 2023-08-24
11+
1012
### Compatibility
1113

1214
- Update MSRV to 1.70.0
@@ -77,7 +79,8 @@ MSRV changed to 1.64.0
7779
## [3.0.1] - 2022-01-03
7880

7981
<!-- next-url -->
80-
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v4.3.1...HEAD
82+
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v4.4.0...HEAD
83+
[4.4.0]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v4.3.1...clap_complete_fig-v4.4.0
8184
[4.3.1]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v4.3.0...clap_complete_fig-v4.3.1
8285
[4.3.0]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v4.2.0...clap_complete_fig-v4.3.0
8386
[4.2.0]: https://github.com/clap-rs/clap/compare/clap_complete_fig-v4.1.2...clap_complete_fig-v4.2.0

clap_complete_fig/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clap_complete_fig"
3-
version = "4.3.1"
3+
version = "4.4.0"
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_complete_nushell/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+
## [4.4.0] - 2023-08-24
11+
1012
### Compatibility
1113

1214
- Update MSRV to 1.70.0
@@ -18,7 +20,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1820
## [4.3.0] - 2023-05-24
1921

2022
<!-- next-url -->
21-
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete_nushell-v4.3.2...HEAD
23+
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete_nushell-v4.4.0...HEAD
24+
[4.4.0]: https://github.com/clap-rs/clap/compare/clap_complete_nushell-v4.3.2...clap_complete_nushell-v4.4.0
2225
[4.3.2]: https://github.com/clap-rs/clap/compare/clap_complete_nushell-v4.3.1...clap_complete_nushell-v4.3.2
2326
[4.3.1]: https://github.com/clap-rs/clap/compare/clap_complete_nushell-v4.3.0...clap_complete_nushell-v4.3.1
2427
[4.3.0]: https://github.com/clap-rs/clap/compare/bd163098e122bb65e053a61b773931c8f36d2e7d...clap_complete_nushell-v4.3.0

clap_complete_nushell/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clap_complete_nushell"
3-
version = "4.3.2"
3+
version = "4.4.0"
44
description = "A generator library used with clap for Nushell completion scripts"
55
repository = "https://github.com/clap-rs/clap/tree/master/clap_complete_nushell"
66
categories = ["command-line-interface"]

clap_derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clap_derive"
3-
version = "4.3.12"
3+
version = "4.4.0"
44
description = "Parse command line argument by defining a struct, derive crate."
55
repository = "https://github.com/clap-rs/clap/tree/master/clap_derive"
66
categories = ["command-line-interface", "development-tools::procedural-macro-helpers"]

0 commit comments

Comments
 (0)