Skip to content

Commit 797c99c

Browse files
committed
chore: release v5.2.0
1 parent 20b2535 commit 797c99c

10 files changed

Lines changed: 53 additions & 270 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [5.2.0](https://github.com/jdx/usage/compare/v5.1.0..v5.2.0) - 2026-08-11
4+
5+
### 🚀 Features
6+
7+
- **(argv)** add a zero-allocation argv parser by [@jdx](https://github.com/jdx) in [#798](https://github.com/jdx/usage/pull/798)
8+
- **(spec)** support flag relationships by [@jdx](https://github.com/jdx) in [#793](https://github.com/jdx/usage/pull/793)
9+
10+
### 🐛 Bug Fixes
11+
12+
- **(argv)** stop a repeatable flag from eating a positional by [@jdx](https://github.com/jdx) in [#799](https://github.com/jdx/usage/pull/799)
13+
- **(cli)** recognize about as root command help by [@jdx](https://github.com/jdx) in [#794](https://github.com/jdx/usage/pull/794)
14+
315
## [5.1.0](https://github.com/jdx/usage/compare/v5.0.0..v5.1.0) - 2026-08-09
416

517
### 🚀 Features

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ license = "MIT"
1818
[workspace.dependencies]
1919
clap_usage = { path = "./clap_usage", version = "5.0.0" }
2020
usage-cli = { path = "./cli" }
21-
usage-argv = { path = "./argv", version = "5.1.0" }
22-
usage-lib = { path = "./lib", version = "5.1.0", features = ["clap"] }
21+
usage-argv = { path = "./argv", version = "5.2.0" }
22+
usage-lib = { path = "./lib", version = "5.2.0", features = ["clap"] }
2323

2424
[workspace.metadata.release]
2525
allow-branch = ["main"]

argv/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "usage-argv"
33
description = "Zero-allocation argv parser for usage specs"
4-
version = "5.1.0"
4+
version = "5.2.0"
55
edition = "2021"
66
rust-version = "1.80.0"
77
homepage = { workspace = true }

0 commit comments

Comments
 (0)