From 0c5400dadb6d8a87ce0109e49c70eb61af5c6add Mon Sep 17 00:00:00 2001 From: Ed Page Date: Sat, 30 Apr 2022 06:35:57 -0500 Subject: [PATCH] chore: Release --- Cargo.toml | 2 +- clap_complete/Cargo.toml | 2 +- clap_lex/CHANGELOG.md | 5 ++++- clap_lex/Cargo.toml | 2 +- clap_lex/README.md | 8 ++++---- 5 files changed, 11 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8f3dd23f677..dca509f905f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -119,7 +119,7 @@ path = "benches/06_rustup.rs" [dependencies] clap_derive = { path = "./clap_derive", version = "=3.1.7", optional = true } -clap_lex = { path = "./clap_lex", version = "0.1.0" } +clap_lex = { path = "./clap_lex", version = "0.2.0" } bitflags = "1.2" textwrap = { version = "0.15.0", default-features = false, features = [] } unicase = { version = "2.6", optional = true } diff --git a/clap_complete/Cargo.toml b/clap_complete/Cargo.toml index 669130768aa..5f946f0cef8 100644 --- a/clap_complete/Cargo.toml +++ b/clap_complete/Cargo.toml @@ -36,7 +36,7 @@ bench = false [dependencies] clap = { path = "../", version = "3.1.10", default-features = false, features = ["std"] } -clap_lex = { path = "../clap_lex", version = "0.1.0", optional = true } +clap_lex = { path = "../clap_lex", version = "0.2.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 c5fe00bcdaa..16318c46f37 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.2.0] - 2022-04-30 + ### Breaking Changes - Don't do prefix matching by default @@ -16,5 +18,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Drop `memchr` dependency -[Unreleased]: https://github.com/clap-rs/clap/compare/clap_lex-v0.1.1...HEAD +[Unreleased]: https://github.com/clap-rs/clap/compare/clap_lex-v0.2.0...HEAD +[0.2.0]: https://github.com/clap-rs/clap/compare/clap_lex-v0.1.1...clap_lex-v0.2.0 [0.1.1]: https://github.com/clap-rs/clap/compare/ce71b08a3fe28c640dc6e17f6f5bb1452bd6d6d8...clap_lex-v0.1.1 diff --git a/clap_lex/Cargo.toml b/clap_lex/Cargo.toml index 38218cb4e84..c2046772595 100644 --- a/clap_lex/Cargo.toml +++ b/clap_lex/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clap_lex" -version = "0.1.1" +version = "0.2.0" edition = "2018" include = [ "src/**/*", diff --git a/clap_lex/README.md b/clap_lex/README.md index 833544a4753..374dc48a41b 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.1.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.1.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.2.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.2.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.1.1/clap_lex/CONTRIBUTING.md) -5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_lex-v0.1.1/README.md#sponsors) +4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_lex-v0.2.0/clap_lex/CONTRIBUTING.md) +5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_lex-v0.2.0/README.md#sponsors) ## About