Skip to content

Commit 0134f45

Browse files
committed
chore: Release
1 parent 995ee03 commit 0134f45

File tree

6 files changed

+41
-38
lines changed

6 files changed

+41
-38
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
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.18] - 2024-01-16
24+
2325
### Fixes
2426

2527
- *(error)* When lacking `usage` feature, ensure the list of required arguments is unique
@@ -4535,7 +4537,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
45354537
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
45364538

45374539
<!-- next-url -->
4538-
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.4.17...HEAD
4540+
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.4.18...HEAD
4541+
[4.4.18]: https://github.com/clap-rs/clap/compare/v4.4.17...v4.4.18
45394542
[4.4.17]: https://github.com/clap-rs/clap/compare/v4.4.16...v4.4.17
45404543
[4.4.16]: https://github.com/clap-rs/clap/compare/v4.4.15...v4.4.16
45414544
[4.4.15]: https://github.com/clap-rs/clap/compare/v4.4.14...v4.4.15

CITATION.cff

Lines changed: 2 additions & 2 deletions
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: 2024-01-15
7-
version: 4.4.17
6+
date-released: 2024-01-16
7+
version: 4.4.18
88

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

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ include = [
2727

2828
[package]
2929
name = "clap"
30-
version = "4.4.17"
30+
version = "4.4.18"
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"]
@@ -102,7 +102,7 @@ unstable-styles = ["clap_builder/unstable-styles"]
102102
bench = false
103103

104104
[dependencies]
105-
clap_builder = { path = "./clap_builder", version = "=4.4.17", default-features = false }
105+
clap_builder = { path = "./clap_builder", version = "=4.4.18", default-features = false }
106106
clap_derive = { path = "./clap_derive", version = "=4.4.7", optional = true }
107107

108108
[dev-dependencies]

clap_builder/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_builder"
3-
version = "4.4.17"
3+
version = "4.4.18"
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"]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//! - [Cookbook][_cookbook]
1212
//! - [FAQ][_faq]
1313
//! - [Discussions](https://github.com/clap-rs/clap/discussions)
14-
//! - [CHANGELOG](https://github.com/clap-rs/clap/blob/v4.4.17/CHANGELOG.md) (includes major version migration
14+
//! - [CHANGELOG](https://github.com/clap-rs/clap/blob/v4.4.18/CHANGELOG.md) (includes major version migration
1515
//! guides)
1616
//!
1717
//! ## Aspirations

0 commit comments

Comments
 (0)