Skip to content

Commit d222ae4

Browse files
committed
chore: Release
1 parent a8abcb4 commit d222ae4

File tree

9 files changed

+28
-22
lines changed

9 files changed

+28
-22
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.5.14] - 2024-08-08
24+
2325
### Features
2426

2527
- *(unstable-ext)* Added `Arg::add` for attaching arbitrary state, like completion hints, to `Arg` without `Arg` knowing about it
@@ -4610,7 +4612,8 @@ Minimum version of Rust is now v1.13.0 (Stable)
46104612
* **arg** allow lifetimes other than 'static in arguments ([9e8c1fb9](https://github.com/clap-rs/clap/commit/9e8c1fb9406f8448873ca58bab07fe905f1551e5))
46114613

46124614
<!-- next-url -->
4613-
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.13...HEAD
4615+
[Unreleased]: https://github.com/clap-rs/clap/compare/v4.5.14...HEAD
4616+
[4.5.14]: https://github.com/clap-rs/clap/compare/v4.5.13...v4.5.14
46144617
[4.5.13]: https://github.com/clap-rs/clap/compare/v4.5.12...v4.5.13
46154618
[4.5.12]: https://github.com/clap-rs/clap/compare/v4.5.11...v4.5.12
46164619
[4.5.11]: https://github.com/clap-rs/clap/compare/v4.5.10...v4.5.11

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-07-31
7-
version: 4.5.13
6+
date-released: 2024-08-08
7+
version: 4.5.14
88

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

Cargo.lock

Lines changed: 9 additions & 9 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
@@ -99,7 +99,7 @@ blocks_in_conditions = "allow"
9999

100100
[package]
101101
name = "clap"
102-
version = "4.5.13"
102+
version = "4.5.14"
103103
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
104104
categories = ["command-line-interface"]
105105
keywords = [
@@ -175,7 +175,7 @@ unstable-styles = ["clap_builder/unstable-styles"] # deprecated
175175
bench = false
176176

177177
[dependencies]
178-
clap_builder = { path = "./clap_builder", version = "=4.5.13", default-features = false }
178+
clap_builder = { path = "./clap_builder", version = "=4.5.14", default-features = false }
179179
clap_derive = { path = "./clap_derive", version = "=4.5.13", optional = true }
180180

181181
[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.5.13"
3+
version = "4.5.14"
44
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
55
categories = ["command-line-interface"]
66
keywords = [

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.5.13] - 2024-08-08
11+
1012
### Features
1113

1214
- *(dynamic)* Added `ArgValueCompleter` for custom completions
@@ -297,7 +299,8 @@ MSRV changed to 1.64.0
297299
## [3.0.1] - 2022-01-03
298300

299301
<!-- next-url -->
300-
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.12...HEAD
302+
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.13...HEAD
303+
[4.5.13]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.12...clap_complete-v4.5.13
301304
[4.5.12]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.11...clap_complete-v4.5.12
302305
[4.5.11]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.10...clap_complete-v4.5.11
303306
[4.5.10]: https://github.com/clap-rs/clap/compare/clap_complete-v4.5.9...clap_complete-v4.5.10

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.5.12"
3+
version = "4.5.13"
44
description = "Generate shell completion scripts for your clap::Command"
55
categories = ["command-line-interface"]
66
keywords = [

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

1919
## About
2020

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.5.13/CHANGELOG.md) (includes major version migration
14+
//! - [CHANGELOG](https://github.com/clap-rs/clap/blob/v4.5.14/CHANGELOG.md) (includes major version migration
1515
//! guides)
1616
//!
1717
//! ## Aspirations

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy