Skip to content

Commit 38b5a2f

Browse files
committed
chore: Release
1 parent e485448 commit 38b5a2f

File tree

6 files changed

+14
-11
lines changed

6 files changed

+14
-11
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

clap_builder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ unstable-styles = ["color"]
5858
bench = false
5959

6060
[dependencies]
61-
clap_lex = { path = "../clap_lex", version = "0.5.0" }
61+
clap_lex = { path = "../clap_lex", version = "0.6.0" }
6262
unicase = { version = "2.6.0", optional = true }
6363
strsim = { version = "0.10.0", optional = true }
6464
anstream = { version = "0.6.0", optional = true }

clap_complete/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ bench = false
3333

3434
[dependencies]
3535
clap = { path = "../", version = "4.1.0", default-features = false, features = ["std"] }
36-
clap_lex = { path = "../clap_lex", version = "0.5.0", optional = true }
36+
clap_lex = { path = "../clap_lex", version = "0.6.0", optional = true }
3737
is_executable = { version = "1.0.1", optional = true }
3838
pathdiff = { version = "0.2.1", optional = true }
3939
shlex = { version = "1.1.0", optional = true }

clap_lex/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+
## [0.6.0] - 2023-10-24
11+
1012
### Breaking Change
1113

1214
- Renamed `is_number` to more focused `is_negative_number`
@@ -91,7 +93,8 @@ MSRV changed to 1.64.0
9193
- Drop `memchr` dependency
9294

9395
<!-- next-url -->
94-
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_lex-v0.5.1...HEAD
96+
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_lex-v0.6.0...HEAD
97+
[0.6.0]: https://github.com/clap-rs/clap/compare/clap_lex-v0.5.1...clap_lex-v0.6.0
9598
[0.5.1]: https://github.com/clap-rs/clap/compare/clap_lex-v0.5.0...clap_lex-v0.5.1
9699
[0.5.0]: https://github.com/clap-rs/clap/compare/clap_lex-v0.4.1...clap_lex-v0.5.0
97100
[0.4.1]: https://github.com/clap-rs/clap/compare/clap_lex-v0.4.0...clap_lex-v0.4.1

clap_lex/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_lex"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
description = "Minimal, flexible command line parser"
55
repository = "https://github.com/clap-rs/clap/tree/master/clap_lex"
66
categories = ["command-line-interface"]

clap_lex/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
66
[![Crates.io](https://img.shields.io/crates/v/clap_lex?style=flat-square)](https://crates.io/crates/clap_lex)
77
[![Crates.io](https://img.shields.io/crates/d/clap_lex?style=flat-square)](https://crates.io/crates/clap_lex)
8-
[![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)
9-
[![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)
8+
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_lex-v0.6.0/LICENSE-APACHE)
9+
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_lex-v0.6.0/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_lex)
1515
3. [Questions & Discussions](https://github.com/clap-rs/clap/discussions)
16-
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_lex-v0.5.1/clap_lex/CONTRIBUTING.md)
17-
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_lex-v0.5.1/README.md#sponsors)
16+
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_lex-v0.6.0/clap_lex/CONTRIBUTING.md)
17+
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_lex-v0.6.0/README.md#sponsors)
1818

1919
## About

0 commit comments

Comments
 (0)