mirror of
https://github.com/clap-rs/clap
synced 2025-01-22 09:24:59 +00:00
chore: Release
This commit is contained in:
parent
a982adfbbd
commit
4b82b97cd9
4 changed files with 12 additions and 9 deletions
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -462,7 +462,7 @@ dependencies = [
|
||||||
"anstream",
|
"anstream",
|
||||||
"anstyle",
|
"anstyle",
|
||||||
"backtrace",
|
"backtrace",
|
||||||
"clap_lex 0.7.3",
|
"clap_lex 0.7.4",
|
||||||
"color-print",
|
"color-print",
|
||||||
"static_assertions",
|
"static_assertions",
|
||||||
"strsim",
|
"strsim",
|
||||||
|
@ -478,7 +478,7 @@ version = "4.5.38"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"automod",
|
"automod",
|
||||||
"clap 4.5.22",
|
"clap 4.5.22",
|
||||||
"clap_lex 0.7.3",
|
"clap_lex 0.7.4",
|
||||||
"completest",
|
"completest",
|
||||||
"completest-pty",
|
"completest-pty",
|
||||||
"is_executable",
|
"is_executable",
|
||||||
|
@ -525,7 +525,7 @@ checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "clap_lex"
|
name = "clap_lex"
|
||||||
version = "0.7.3"
|
version = "0.7.4"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"automod",
|
"automod",
|
||||||
]
|
]
|
||||||
|
|
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
<!-- next-header -->
|
<!-- next-header -->
|
||||||
## [Unreleased] - ReleaseDate
|
## [Unreleased] - ReleaseDate
|
||||||
|
|
||||||
|
## [0.7.4] - 2024-12-05
|
||||||
|
|
||||||
### Fixes
|
### Fixes
|
||||||
|
|
||||||
- Support `E` in numbers, not just `e`
|
- Support `E` in numbers, not just `e`
|
||||||
|
@ -113,7 +115,8 @@ MSRV changed to 1.64.0
|
||||||
- Drop `memchr` dependency
|
- Drop `memchr` dependency
|
||||||
|
|
||||||
<!-- next-url -->
|
<!-- next-url -->
|
||||||
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_lex-v0.7.3...HEAD
|
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_lex-v0.7.4...HEAD
|
||||||
|
[0.7.4]: https://github.com/clap-rs/clap/compare/clap_lex-v0.7.3...clap_lex-v0.7.4
|
||||||
[0.7.3]: https://github.com/clap-rs/clap/compare/clap_lex-v0.7.2...clap_lex-v0.7.3
|
[0.7.3]: https://github.com/clap-rs/clap/compare/clap_lex-v0.7.2...clap_lex-v0.7.3
|
||||||
[0.7.2]: https://github.com/clap-rs/clap/compare/clap_lex-v0.7.1...clap_lex-v0.7.2
|
[0.7.2]: https://github.com/clap-rs/clap/compare/clap_lex-v0.7.1...clap_lex-v0.7.2
|
||||||
[0.7.1]: https://github.com/clap-rs/clap/compare/clap_lex-v0.7.0...clap_lex-v0.7.1
|
[0.7.1]: https://github.com/clap-rs/clap/compare/clap_lex-v0.7.0...clap_lex-v0.7.1
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "clap_lex"
|
name = "clap_lex"
|
||||||
version = "0.7.3"
|
version = "0.7.4"
|
||||||
description = "Minimal, flexible command line parser"
|
description = "Minimal, flexible command line parser"
|
||||||
categories = ["command-line-interface"]
|
categories = ["command-line-interface"]
|
||||||
keywords = [
|
keywords = [
|
||||||
|
|
|
@ -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/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)
|
[![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.7.3/LICENSE-APACHE)
|
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_lex-v0.7.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.7.3/LICENSE-MIT)
|
[![License](https://img.shields.io/badge/license-MIT-blue?style=flat-square)](https://github.com/clap-rs/clap/blob/clap_lex-v0.7.4/LICENSE-MIT)
|
||||||
|
|
||||||
Dual-licensed under [Apache 2.0](LICENSE-APACHE) or [MIT](LICENSE-MIT).
|
Dual-licensed under [Apache 2.0](LICENSE-APACHE) or [MIT](LICENSE-MIT).
|
||||||
|
|
||||||
1. [About](#about)
|
1. [About](#about)
|
||||||
2. [API Reference](https://docs.rs/clap_lex)
|
2. [API Reference](https://docs.rs/clap_lex)
|
||||||
3. [Questions & Discussions](https://github.com/clap-rs/clap/discussions)
|
3. [Questions & Discussions](https://github.com/clap-rs/clap/discussions)
|
||||||
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_lex-v0.7.3/clap_lex/CONTRIBUTING.md)
|
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_lex-v0.7.4/clap_lex/CONTRIBUTING.md)
|
||||||
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_lex-v0.7.3/README.md#sponsors)
|
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_lex-v0.7.4/README.md#sponsors)
|
||||||
|
|
||||||
## About
|
## About
|
||||||
|
|
Loading…
Reference in a new issue