From 5047bb40bd74457215e524db2039211d362cc6e9 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Fri, 19 May 2023 11:48:29 -0500 Subject: [PATCH] chore: Release --- Cargo.lock | 6 +++--- clap_builder/Cargo.toml | 2 +- clap_complete/Cargo.toml | 2 +- clap_lex/CHANGELOG.md | 5 ++++- clap_lex/Cargo.toml | 2 +- clap_lex/README.md | 8 ++++---- 6 files changed, 14 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cc6e7f7cf1f..30e55e0b9bf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -216,7 +216,7 @@ dependencies = [ "anstyle", "backtrace", "bitflags", - "clap_lex 0.4.1", + "clap_lex 0.5.0", "color-print", "humantime", "once_cell", @@ -238,7 +238,7 @@ name = "clap_complete" version = "4.2.3" dependencies = [ "clap 4.2.7", - "clap_lex 0.4.1", + "clap_lex 0.5.0", "is_executable", "pathdiff", "shlex", @@ -277,7 +277,7 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.4.1" +version = "0.5.0" [[package]] name = "clap_mangen" diff --git a/clap_builder/Cargo.toml b/clap_builder/Cargo.toml index 632417b7a7f..01c401398bb 100644 --- a/clap_builder/Cargo.toml +++ b/clap_builder/Cargo.toml @@ -58,7 +58,7 @@ unstable-styles = ["color"] bench = false [dependencies] -clap_lex = { path = "../clap_lex", version = "0.4.0" } +clap_lex = { path = "../clap_lex", version = "0.5.0" } bitflags = "1.2.0" unicase = { version = "2.6.0", optional = true } strsim = { version = "0.10.0", optional = true } diff --git a/clap_complete/Cargo.toml b/clap_complete/Cargo.toml index 2bb8049056f..64c0140ec90 100644 --- a/clap_complete/Cargo.toml +++ b/clap_complete/Cargo.toml @@ -33,7 +33,7 @@ bench = false [dependencies] clap = { path = "../", version = "4.1.0", default-features = false, features = ["std"] } -clap_lex = { path = "../clap_lex", version = "0.4.0", optional = true } +clap_lex = { path = "../clap_lex", version = "0.5.0", optional = true } is_executable = { version = "1.0.1", optional = true } pathdiff = { version = "0.2.1", optional = true } shlex = { version = "1.1.0", optional = true } diff --git a/clap_lex/CHANGELOG.md b/clap_lex/CHANGELOG.md index bdef5c38089..77db4933900 100644 --- a/clap_lex/CHANGELOG.md +++ b/clap_lex/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [0.5.0] - 2023-05-19 + ### Breaking Change - Removed `OsStrExt::split_at` @@ -75,7 +77,8 @@ MSRV changed to 1.64.0 - Drop `memchr` dependency -[Unreleased]: https://github.com/clap-rs/clap/compare/clap_lex-v0.4.1...HEAD +[Unreleased]: https://github.com/clap-rs/clap/compare/clap_lex-v0.5.0...HEAD +[0.5.0]: https://github.com/clap-rs/clap/compare/clap_lex-v0.4.1...clap_lex-v0.5.0 [0.4.1]: https://github.com/clap-rs/clap/compare/clap_lex-v0.4.0...clap_lex-v0.4.1 [0.4.0]: https://github.com/clap-rs/clap/compare/clap_lex-v0.3.3...clap_lex-v0.4.0 [0.3.3]: https://github.com/clap-rs/clap/compare/clap_lex-v0.3.2...clap_lex-v0.3.3 diff --git a/clap_lex/Cargo.toml b/clap_lex/Cargo.toml index 0be574f537d..7fb4595157b 100644 --- a/clap_lex/Cargo.toml +++ b/clap_lex/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clap_lex" -version = "0.4.1" +version = "0.5.0" description = "Minimal, flexible command line parser" repository = "https://github.com/clap-rs/clap/tree/master/clap_lex" categories = ["command-line-interface"] diff --git a/clap_lex/README.md b/clap_lex/README.md index 18d856205eb..5d97fc4d369 100644 --- a/clap_lex/README.md +++ b/clap_lex/README.md @@ -5,15 +5,15 @@ [![Crates.io](https://img.shields.io/crates/v/clap_lex?style=flat-square)](https://crates.io/crates/clap_lex) [![Crates.io](https://img.shields.io/crates/d/clap_lex?style=flat-square)](https://crates.io/crates/clap_lex) -[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_lex-v0.4.1/LICENSE-APACHE) -[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_lex-v0.4.1/LICENSE-MIT) +[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_lex-v0.5.0/LICENSE-APACHE) +[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_lex-v0.5.0/LICENSE-MIT) Dual-licensed under [Apache 2.0](LICENSE-APACHE) or [MIT](LICENSE-MIT). 1. [About](#about) 2. [API Reference](https://docs.rs/clap_lex) 3. [Questions & Discussions](https://github.com/clap-rs/clap/discussions) -4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_lex-v0.4.1/clap_lex/CONTRIBUTING.md) -5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_lex-v0.4.1/README.md#sponsors) +4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_lex-v0.5.0/clap_lex/CONTRIBUTING.md) +5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_lex-v0.5.0/README.md#sponsors) ## About