chore: Release

This commit is contained in:
Ed Page 2023-08-24 11:07:01 -05:00
parent 7224e5044e
commit 9c93ea717c
4 changed files with 15 additions and 12 deletions

12
Cargo.lock generated
View file

@ -515,7 +515,7 @@ checksum = "4f423e341edefb78c9caba2d9c7f7687d0e72e89df3ce3394554754393ac3990"
dependencies = [
"anstyle",
"bitflags 1.3.2",
"clap_lex 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
"clap_lex 0.5.0",
]
[[package]]
@ -525,7 +525,7 @@ dependencies = [
"anstream",
"anstyle",
"backtrace",
"clap_lex 0.5.0",
"clap_lex 0.5.1",
"color-print",
"humantime",
"once_cell",
@ -547,7 +547,7 @@ name = "clap_complete"
version = "4.3.2"
dependencies = [
"clap 4.3.24",
"clap_lex 0.5.0",
"clap_lex 0.5.1",
"completest",
"is_executable",
"pathdiff",
@ -589,12 +589,12 @@ dependencies = [
[[package]]
name = "clap_lex"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
[[package]]
name = "clap_lex"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
version = "0.5.1"
[[package]]
name = "clap_mangen"

View file

@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased] - ReleaseDate
## [0.5.1] - 2023-08-24
### Compatibility
- Update MSRV to 1.70.0
@ -81,7 +83,8 @@ MSRV changed to 1.64.0
- Drop `memchr` dependency
<!-- next-url -->
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_lex-v0.5.0...HEAD
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_lex-v0.5.1...HEAD
[0.5.1]: https://github.com/clap-rs/clap/compare/clap_lex-v0.5.0...clap_lex-v0.5.1
[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

View file

@ -1,6 +1,6 @@
[package]
name = "clap_lex"
version = "0.5.0"
version = "0.5.1"
description = "Minimal, flexible command line parser"
repository = "https://github.com/clap-rs/clap/tree/master/clap_lex"
categories = ["command-line-interface"]

View file

@ -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.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)
[![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.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.5.1/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.5.0/clap_lex/CONTRIBUTING.md)
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_lex-v0.5.0/README.md#sponsors)
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_lex-v0.5.1/clap_lex/CONTRIBUTING.md)
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_lex-v0.5.1/README.md#sponsors)
## About