From 225f074cf6556145ad48b241454694a536d4a7ec Mon Sep 17 00:00:00 2001 From: mise-en-dev Date: Fri, 13 Dec 2024 06:37:26 -0600 Subject: [PATCH] chore: release v1.5.3 (#195) --- CHANGELOG.md | 14 ++++++++++++++ Cargo.lock | 8 ++++---- 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(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 47e5a7c..286571d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [1.5.3](https://github.com/jdx/usage/compare/v1.5.2..v1.5.3) - 2024-12-13 + +### ๐Ÿ› Bug Fixes + +- bash completion escape by [@jdx](https://github.com/jdx) in [ce80f20](https://github.com/jdx/usage/commit/ce80f207b609f251515ba0889844cd694ed6f820) + +### ๐Ÿงช Testing + +- snapshots by [@jdx](https://github.com/jdx) in [d15bd90](https://github.com/jdx/usage/commit/d15bd90af4d67440219182c287959013ca56b8d3) + +### ๐Ÿ” Other Changes + +- add snapshots to pre-commit by [@jdx](https://github.com/jdx) in [9d19066](https://github.com/jdx/usage/commit/9d1906603bd0ea505928a4423b78bb4edd744b18) + ## [1.5.2](https://github.com/jdx/usage/compare/v1.5.1..v1.5.2) - 2024-12-12 ### ๐Ÿ› Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 28a2276..39ce2fd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -177,9 +177,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "cc" -version = "1.2.3" +version = "1.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "27f657647bcff5394bf56c7317665bbf790a137a50eaaa5c6bfbb9e27a518f2d" +checksum = "9157bbaa6b165880c27a4293a474c91cdcf265cc68cc829bf10be0964a391caf" dependencies = [ "shlex", ] @@ -1485,7 +1485,7 @@ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" [[package]] name = "usage-cli" -version = "1.5.2" +version = "1.5.3" dependencies = [ "assert_cmd", "clap", @@ -1514,7 +1514,7 @@ dependencies = [ [[package]] name = "usage-lib" -version = "1.5.2" +version = "1.5.3" dependencies = [ "clap", "ctor", diff --git a/Cargo.toml b/Cargo.toml index 700f88a..f6e20c5 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.5.2", features = ["clap"] } +usage-lib = { path = "./lib", version = "1.5.3", features = ["clap"] } [workspace.metadata.release] allow-branch = ["main"] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 70fd1eb..e2220f5 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "usage-cli" edition = "2021" -version = "1.5.2" +version = "1.5.3" 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 c754543..68faec9 100644 --- a/cli/usage.usage.kdl +++ b/cli/usage.usage.kdl @@ -1,6 +1,6 @@ name "usage-cli" bin "usage" -version "1.5.2" +version "1.5.3" 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 768fa6b..d5c1201 100644 --- a/docs/cli/reference/commands.json +++ b/docs/cli/reference/commands.json @@ -519,7 +519,7 @@ "config": { "props": {} }, - "version": "1.5.2", + "version": "1.5.3", "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 70f2ca7..b160b96 100644 --- a/docs/cli/reference/index.md +++ b/docs/cli/reference/index.md @@ -2,7 +2,7 @@ **Usage**: `usage [--usage-spec] [COMPLETIONS] ` -**Version**: 1.5.2 +**Version**: 1.5.3 - **Usage**: `usage [--usage-spec] [COMPLETIONS] ` diff --git a/lib/Cargo.toml b/lib/Cargo.toml index d7472d7..5cb5070 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "usage-lib" edition = "2021" -version = "1.5.2" +version = "1.5.3" rust-version = "1.70.0" include = [ "/Cargo.toml",