From af64699912401443786d84fe040f5d93761300d1 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Tue, 20 Sep 2022 16:28:27 -0500 Subject: [PATCH] chore: Release --- Cargo.lock | 2 +- 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, 12 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1015d0136be..df2a10c838e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -179,7 +179,7 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.2.4" +version = "0.3.0" dependencies = [ "os_str_bytes", ] diff --git a/Cargo.toml b/Cargo.toml index 2071d2707f0..f23474be07d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -92,7 +92,7 @@ bench = false [dependencies] clap_derive = { path = "./clap_derive", version = "=4.0.0-alpha.0", optional = true } -clap_lex = { path = "./clap_lex", version = "0.2.2" } +clap_lex = { path = "./clap_lex", version = "0.3.0" } bitflags = "1.2" unicase = { version = "2.6", optional = true } strsim = { version = "0.10", optional = true } diff --git a/clap_complete/Cargo.toml b/clap_complete/Cargo.toml index 838bdbd8adf..32503e92e14 100644 --- a/clap_complete/Cargo.toml +++ b/clap_complete/Cargo.toml @@ -41,7 +41,7 @@ bench = false [dependencies] clap = { path = "../", version = "4.0.0-alpha.0", default-features = false, features = ["std"] } -clap_lex = { path = "../clap_lex", version = "0.2.2", optional = true } +clap_lex = { path = "../clap_lex", version = "0.3.0", optional = true } is_executable = { version = "1.0.1", optional = true } os_str_bytes = { version = "6.0", default-features = false, features = ["raw_os_str"], optional = true } pathdiff = { version = "0.2.1", optional = true } diff --git a/clap_lex/CHANGELOG.md b/clap_lex/CHANGELOG.md index ee7195f6f2b..a3ed368c806 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.3.0] - 2022-09-20 + ### Breaking Changes - `RawArgs::insert` now takes owned values @@ -38,7 +40,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Drop `memchr` dependency -[Unreleased]: https://github.com/clap-rs/clap/compare/clap_lex-v0.2.4...HEAD +[Unreleased]: https://github.com/clap-rs/clap/compare/clap_lex-v0.3.0...HEAD +[0.3.0]: https://github.com/clap-rs/clap/compare/clap_lex-v0.2.4...clap_lex-v0.3.0 [0.2.4]: https://github.com/clap-rs/clap/compare/clap_lex-v0.2.3...clap_lex-v0.2.4 [0.2.3]: https://github.com/clap-rs/clap/compare/clap_lex-v0.2.2...clap_lex-v0.2.3 [0.2.2]: https://github.com/clap-rs/clap/compare/clap_lex-v0.2.1...clap_lex-v0.2.2 diff --git a/clap_lex/Cargo.toml b/clap_lex/Cargo.toml index 465672e66cc..e3cc855f956 100644 --- a/clap_lex/Cargo.toml +++ b/clap_lex/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clap_lex" -version = "0.2.4" +version = "0.3.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 887b9537592..eebd4c5711a 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.2.4/LICENSE-APACHE) -[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_lex-v0.2.4/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.3.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.3.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.2.4/clap_lex/CONTRIBUTING.md) -5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_lex-v0.2.4/README.md#sponsors) +4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_lex-v0.3.0/clap_lex/CONTRIBUTING.md) +5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_lex-v0.3.0/README.md#sponsors) ## About