From 7275b7e6c615e3ea175a4974d06fc6902f750086 Mon Sep 17 00:00:00 2001 From: mise-en-dev <123107610+mise-en-dev@users.noreply.github.com> Date: Wed, 18 Dec 2024 15:10:05 +0000 Subject: [PATCH] chore: release v1.7.0 --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.lock | 4 ++-- Cargo.toml | 2 +- cli/Cargo.toml | 2 +- cli/usage.usage.kdl | 2 +- docs/cli/reference/commands.json | 2 +- docs/cli/reference/index.md | 2 +- lib/Cargo.toml | 2 +- 8 files changed, 24 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index beaa91a..c11aafd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [1.7.0](https://github.com/jdx/usage/compare/v1.6.0..v1.7.0) - 2024-12-18 + +### 🚀 Features + +- added double_dash option to args by [@jdx](https://github.com/jdx) in [#202](https://github.com/jdx/usage/pull/202) + +### 🐛 Bug Fixes + +- allow overriding `usage` in case of conflict by [@jdx](https://github.com/jdx) in [#198](https://github.com/jdx/usage/pull/198) +- join code fences if they are right next to each other by [@jdx](https://github.com/jdx) in [#200](https://github.com/jdx/usage/pull/200) +- default cmd help types by [@jdx](https://github.com/jdx) in [#203](https://github.com/jdx/usage/pull/203) + +### 🔍 Other Changes + +- disable cargo up in release-plz by [@jdx](https://github.com/jdx) in [16a36b7](https://github.com/jdx/usage/commit/16a36b78673b40a98a4701e30d5222f4a1b4bb95) + ## [1.6.0](https://github.com/jdx/usage/compare/v1.5.3..v1.6.0) - 2024-12-14 ### 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index aee4b1f..c8d8825 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1485,7 +1485,7 @@ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" [[package]] name = "usage-cli" -version = "1.6.0" +version = "1.7.0" dependencies = [ "assert_cmd", "clap", @@ -1514,7 +1514,7 @@ dependencies = [ [[package]] name = "usage-lib" -version = "1.6.0" +version = "1.7.0" dependencies = [ "clap", "ctor", diff --git a/Cargo.toml b/Cargo.toml index 0772ffc..3c3d969 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ license = "MIT" [workspace.dependencies] clap_usage = { path = "./clap_usage", version = "1.0.0" } usage-cli = { path = "./cli" } -usage-lib = { path = "./lib", version = "1.6.0", features = ["clap"] } +usage-lib = { path = "./lib", version = "1.7.0", features = ["clap"] } [workspace.metadata.release] allow-branch = ["main"] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 0b544d9..9d21add 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "usage-cli" edition = "2021" -version = "1.6.0" +version = "1.7.0" description = "CLI for working with usage-based CLIs" license = { workspace = true } authors = { workspace = true } diff --git a/cli/usage.usage.kdl b/cli/usage.usage.kdl index c293aaa..82a9511 100644 --- a/cli/usage.usage.kdl +++ b/cli/usage.usage.kdl @@ -1,6 +1,6 @@ name "usage-cli" bin "usage" -version "1.6.0" +version "1.7.0" about "CLI for working with usage-based CLIs" usage "Usage: usage-cli [OPTIONS] [COMPLETIONS] " flag "--usage-spec" help="Outputs a `usage.kdl` spec for this CLI itself" diff --git a/docs/cli/reference/commands.json b/docs/cli/reference/commands.json index f60f299..f06c574 100644 --- a/docs/cli/reference/commands.json +++ b/docs/cli/reference/commands.json @@ -581,7 +581,7 @@ "config": { "props": {} }, - "version": "1.6.0", + "version": "1.7.0", "usage": "Usage: usage-cli [OPTIONS] [COMPLETIONS] ", "complete": {}, "source_code_link_template": "https://github.com/jdx/usage/blob/main/cli/src/cli/{{path}}.rs", diff --git a/docs/cli/reference/index.md b/docs/cli/reference/index.md index 073862e..f8f393c 100644 --- a/docs/cli/reference/index.md +++ b/docs/cli/reference/index.md @@ -2,7 +2,7 @@ **Usage**: `usage [--usage-spec] [COMPLETIONS] ` -**Version**: 1.6.0 +**Version**: 1.7.0 - **Usage**: `usage [--usage-spec] [COMPLETIONS] ` diff --git a/lib/Cargo.toml b/lib/Cargo.toml index d4b5386..4ecfde0 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "usage-lib" edition = "2021" -version = "1.6.0" +version = "1.7.0" rust-version = "1.70.0" include = [ "/Cargo.toml",