Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## [6.11.0](https://github.com/jdx/usage/compare/v6.10.0..v6.11.0) - 2026-09-21

### 🚀 Features

- **(parse)** select default subcommands on empty invocations by [@zeitlinger](https://github.com/zeitlinger) in [#1458](https://github.com/jdx/usage/pull/1458)
- **(spec)** put a CLI's logo on its help page by [@jdx](https://github.com/jdx) in [#1455](https://github.com/jdx/usage/pull/1455)

### 🐛 Bug Fixes

- **(cli)** lay help out at the terminal's width, colour a self-dispatched page, and space examples apart by [@jdx](https://github.com/jdx) in [#1454](https://github.com/jdx/usage/pull/1454)

### 🔍 Other Changes

- stop compiling cargo-edit and installing unused tools in CI by [@jdx](https://github.com/jdx) in [#1451](https://github.com/jdx/usage/pull/1451)
- drop OpenSSL build deps from the Cloud Agent image and fix its libicu package by [@jdx](https://github.com/jdx) in [#1452](https://github.com/jdx/usage/pull/1452)
- re-pin renovate-config reusable workflows to current main by [@jdx](https://github.com/jdx) in [f7a6aeb](https://github.com/jdx/usage/commit/f7a6aebcee06ea6fb4404dd19d255b1a77282df3)

### 📦️ Dependency Updates

- bump mr-boxington to 1.14.0 and drop the mbx fallback docs by [@jdx](https://github.com/jdx) in [#1449](https://github.com/jdx/usage/pull/1449)
- drop the stale aube macos-x64 row from mise.lock by [@jdx](https://github.com/jdx) in [#1453](https://github.com/jdx/usage/pull/1453)
- lock file maintenance by [@renovate[bot]](https://github.com/renovate[bot]) in [#1457](https://github.com/jdx/usage/pull/1457)

## [6.10.0](https://github.com/jdx/usage/compare/v6.9.1..v6.10.0) - 2026-09-19

### 🚀 Features
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,20 +42,20 @@ license = "MIT"
[workspace.dependencies]
clap_usage = { path = "./clap_usage", version = "5.0.0" }
usage-cli = { path = "./cli" }
usage-argv = { path = "./argv", version = "6.10.0", default-features = false }
usage-config = { path = "./config", version = "6.10.0" }
usage-derive = { path = "./derive", version = "6.10.0" }
usage-argv = { path = "./argv", version = "6.11.0", default-features = false }
usage-config = { path = "./config", version = "6.11.0" }
usage-derive = { path = "./derive", version = "6.11.0" }
# No features, and defaults off. A feature named here is inherited by every member that writes
# `workspace = true` and inlines into their published manifests — so `clap` and `validation`
# reached members that use neither, one of them an adopter's build script. Defaults
# are off rather than absent because cargo *ignores* a member's `default-features = false` unless
# the workspace declaration sets it too, and warns that it may become a hard error. Members name
# what they need, `docs` included.
usage-lib = { path = "./lib", version = "6.10.0", default-features = false }
usage-rs = { path = "./usage-rs", version = "6.10.0" }
usage-dynamic = { path = "./usage-dynamic", version = "6.10.0" }
usage-test = { path = "./test", version = "6.10.0" }
usage-validation = { path = "./validation", version = "6.10.0" }
usage-lib = { path = "./lib", version = "6.11.0", default-features = false }
usage-rs = { path = "./usage-rs", version = "6.11.0" }
usage-dynamic = { path = "./usage-dynamic", version = "6.11.0" }
usage-test = { path = "./test", version = "6.11.0" }
usage-validation = { path = "./validation", version = "6.11.0" }

[workspace.metadata.release]
allow-branch = ["main"]
2 changes: 1 addition & 1 deletion argv/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "usage-argv"
description = "Zero-allocation argv parser for usage specs"
version = "6.10.0"
version = "6.11.0"
edition = "2021"
rust-version = "1.91"
homepage = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "usage-cli"
edition = "2021"
rust-version = "1.91"
version = "6.10.0"
version = "6.11.0"
description = "CLI for working with usage-based CLIs"
license = { workspace = true }
authors = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion cli/usage.usage.kdl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
min_usage_version "6.5"
name usage
bin usage
version "6.10.0"
version "6.11.0"
repository "https://github.com/jdx/usage"
source_code_link_template #"""
{%- set path = path | replace(from='-', to='_') -%}
Expand Down
2 changes: 1 addition & 1 deletion config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "usage-config"
description = "Layered configuration resolution for usage specs, with provenance"
version = "6.10.0"
version = "6.11.0"
edition = "2021"
rust-version = "1.91"
homepage = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "usage-derive"
description = "Derive macro that compiles a CLI definition into parse tables and a usage spec"
version = "6.10.0"
version = "6.11.0"
edition = "2021"
rust-version = "1.91"
homepage = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion docs/cli/reference/commands.json
Original file line number Diff line number Diff line change
Expand Up @@ -2071,7 +2071,7 @@
"sources": {},
"files": []
},
"version": "6.10.0",
"version": "6.11.0",
"usage": "Usage: usage <COMMAND>\n usage --completions <COMPLETIONS>\n usage --usage-spec",
"complete": {},
"source_code_link_template": "{%- set path = path | replace(from='-', to='_') -%}\n{%- if cmd.subcommands | length > 0 -%}\n{%- set path = path ~ \"/mod.rs\" -%}\n{%- elif path in [\"bash\", \"fish\", \"powershell\", \"zsh\"] -%}\n{%- set path = \"shell.rs\" -%}\n{%- else -%}\n{%- set path = path ~ \".rs\" -%}\n{%- endif -%}\nhttps://github.com/jdx/usage/blob/main/cli/src/cli/{{path}}",
Expand Down
2 changes: 1 addition & 1 deletion docs/cli/reference/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# `usage`

**Version:** 6.10.0
**Version:** 6.11.0

**Repository:** https://github.com/jdx/usage

Expand Down
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "usage-lib"
edition = "2021"
version = "6.10.0"
version = "6.11.0"
rust-version = "1.91"
include = [
"/Cargo.toml",
Expand Down
2 changes: 1 addition & 1 deletion test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "usage-test"
description = "Test helpers for CLIs built with usage"
version = "6.10.0"
version = "6.11.0"
edition = "2021"
rust-version = "1.91"
homepage = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions usage-dynamic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "usage-dynamic"
description = "Runtime command catalogs for usage-rs applications"
version = "6.10.0"
version = "6.11.0"
edition = "2021"
rust-version = "1.91"
homepage = { workspace = true }
Expand All @@ -12,7 +12,7 @@ license = { workspace = true }

[dependencies]
usage-argv = { workspace = true, features = ["help-advanced", "spec", "complete"] }
usage-parser = { package = "usage-lib", path = "../lib", version = "6.10.0", default-features = false, features = ["cli-help"] }
usage-parser = { package = "usage-lib", path = "../lib", version = "6.11.0", default-features = false, features = ["cli-help"] }

[package.metadata.release]
shared-version = true
Expand Down
2 changes: 1 addition & 1 deletion usage-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "usage-rs"
description = "A compiled CLI parser for Rust, built on usage specs"
version = "6.10.0"
version = "6.11.0"
edition = "2021"
rust-version = "1.91"
homepage = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions usage-rs/tests/fixtures/runtime-identity/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion validation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "usage-validation"
description = "Portable expression validation for usage specs"
version = "6.10.0"
version = "6.11.0"
edition = "2021"
rust-version = "1.91"
homepage = { workspace = true }
Expand Down
Loading