mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 06:44:16 +00:00
chore: Release
This commit is contained in:
parent
765c2e18f5
commit
2bb4146374
6 changed files with 14 additions and 11 deletions
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -205,7 +205,7 @@ version = "4.1.13"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"backtrace",
|
"backtrace",
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"clap_lex 0.3.3",
|
"clap_lex 0.4.0",
|
||||||
"humantime",
|
"humantime",
|
||||||
"is-terminal",
|
"is-terminal",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
|
@ -228,7 +228,7 @@ name = "clap_complete"
|
||||||
version = "4.1.5"
|
version = "4.1.5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap 4.1.13",
|
"clap 4.1.13",
|
||||||
"clap_lex 0.3.3",
|
"clap_lex 0.4.0",
|
||||||
"is_executable",
|
"is_executable",
|
||||||
"pathdiff",
|
"pathdiff",
|
||||||
"shlex",
|
"shlex",
|
||||||
|
@ -267,7 +267,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "clap_lex"
|
name = "clap_lex"
|
||||||
version = "0.3.3"
|
version = "0.4.0"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "clap_mangen"
|
name = "clap_mangen"
|
||||||
|
|
|
@ -66,7 +66,7 @@ unstable-v5 = ["deprecated"]
|
||||||
bench = false
|
bench = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap_lex = { path = "../clap_lex", version = "0.3.0" }
|
clap_lex = { path = "../clap_lex", version = "0.4.0" }
|
||||||
bitflags = "1.2.0"
|
bitflags = "1.2.0"
|
||||||
unicase = { version = "2.6.0", optional = true }
|
unicase = { version = "2.6.0", optional = true }
|
||||||
strsim = { version = "0.10.0", optional = true }
|
strsim = { version = "0.10.0", optional = true }
|
||||||
|
|
|
@ -33,7 +33,7 @@ bench = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = { path = "../", version = "4.1.0", default-features = false, features = ["std"] }
|
clap = { path = "../", version = "4.1.0", default-features = false, features = ["std"] }
|
||||||
clap_lex = { path = "../clap_lex", version = "0.3.0", optional = true }
|
clap_lex = { path = "../clap_lex", version = "0.4.0", optional = true }
|
||||||
is_executable = { version = "1.0.1", optional = true }
|
is_executable = { version = "1.0.1", optional = true }
|
||||||
pathdiff = { version = "0.2.1", optional = true }
|
pathdiff = { version = "0.2.1", optional = true }
|
||||||
shlex = { version = "1.1.0", optional = true }
|
shlex = { version = "1.1.0", optional = true }
|
||||||
|
|
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
<!-- next-header -->
|
<!-- next-header -->
|
||||||
## [Unreleased] - ReleaseDate
|
## [Unreleased] - ReleaseDate
|
||||||
|
|
||||||
|
## [0.4.0] - 2023-03-25
|
||||||
|
|
||||||
### Breaking Change
|
### Breaking Change
|
||||||
|
|
||||||
- `RawOsStr` and `RawOsString` are no long exported
|
- `RawOsStr` and `RawOsString` are no long exported
|
||||||
|
@ -63,7 +65,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.3.3...HEAD
|
[Unreleased]: https://github.com/clap-rs/clap/compare/clap_lex-v0.4.0...HEAD
|
||||||
|
[0.4.0]: https://github.com/clap-rs/clap/compare/clap_lex-v0.3.3...clap_lex-v0.4.0
|
||||||
[0.3.3]: https://github.com/clap-rs/clap/compare/clap_lex-v0.3.2...clap_lex-v0.3.3
|
[0.3.3]: https://github.com/clap-rs/clap/compare/clap_lex-v0.3.2...clap_lex-v0.3.3
|
||||||
[0.3.2]: https://github.com/clap-rs/clap/compare/clap_lex-v0.3.1...clap_lex-v0.3.2
|
[0.3.2]: https://github.com/clap-rs/clap/compare/clap_lex-v0.3.1...clap_lex-v0.3.2
|
||||||
[0.3.1]: https://github.com/clap-rs/clap/compare/clap_lex-v0.3.0...clap_lex-v0.3.1
|
[0.3.1]: https://github.com/clap-rs/clap/compare/clap_lex-v0.3.0...clap_lex-v0.3.1
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "clap_lex"
|
name = "clap_lex"
|
||||||
version = "0.3.3"
|
version = "0.4.0"
|
||||||
description = "Minimal, flexible command line parser"
|
description = "Minimal, flexible command line parser"
|
||||||
repository = "https://github.com/clap-rs/clap/tree/master/clap_lex"
|
repository = "https://github.com/clap-rs/clap/tree/master/clap_lex"
|
||||||
categories = ["command-line-interface"]
|
categories = ["command-line-interface"]
|
||||||
|
|
|
@ -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.3.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.4.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.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.4.0/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.3.3/clap_lex/CONTRIBUTING.md)
|
4. [CONTRIBUTING](https://github.com/clap-rs/clap/blob/clap_lex-v0.4.0/clap_lex/CONTRIBUTING.md)
|
||||||
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_lex-v0.3.3/README.md#sponsors)
|
5. [Sponsors](https://github.com/clap-rs/clap/blob/clap_lex-v0.4.0/README.md#sponsors)
|
||||||
|
|
||||||
## About
|
## About
|
||||||
|
|
Loading…
Reference in a new issue