From a9e44829bd1befb0f5c209522c3544ff051b7056 Mon Sep 17 00:00:00 2001 From: mise-en-dev Date: Tue, 5 Nov 2024 16:52:30 -0600 Subject: [PATCH] chore: release v1.2.0 (#158) --- CHANGELOG.md | 13 ++++++++++++- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- cli/Cargo.toml | 2 +- cli/usage.usage.kdl | 2 +- docs/cli/reference.md | 2 +- lib/Cargo.toml | 2 +- 7 files changed, 21 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ebde0a..4199571 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # Changelog -## [1.1.0](https://github.com/jdx/usage/compare/v1.0.1..v1.1.0) - 2024-11-04 +## [1.2.0](https://github.com/jdx/usage/compare/v1.1.1..v1.2.0) - 2024-11-05 + +### 🚀 Features + +- added cache-key to generated completions by [@jdx](https://github.com/jdx) in [#159](https://github.com/jdx/usage/pull/159) + +### 🐛 Bug Fixes + +- require --file or --usage-cmd on `usage g completion` by [@jdx](https://github.com/jdx) in [3cae2ae](https://github.com/jdx/usage/commit/3cae2ae4a1ad6a97358bb49d9d0f3e15c65feb40) + +## [1.1.1](https://github.com/jdx/usage/compare/v1.0.1..v1.1.1) - 2024-11-04 ### 🚀 Features @@ -25,6 +35,7 @@ - set clap_usage version by [@jdx](https://github.com/jdx) in [0a4909f](https://github.com/jdx/usage/commit/0a4909f39ac42b11bc4f9e0e23daf01466e12969) - do not bump clap_usage on every release by [@jdx](https://github.com/jdx) in [2cac664](https://github.com/jdx/usage/commit/2cac6649ca29bfdad4cb9f3aee0573f6be587d1e) - fix autolint action by [@jdx](https://github.com/jdx) in [#155](https://github.com/jdx/usage/pull/155) +- fix cli assets by [@jdx](https://github.com/jdx) in [ab8c6a0](https://github.com/jdx/usage/commit/ab8c6a0a14af1d4ec829660183ec58605afa33c7) ### 📦️ Dependency Updates diff --git a/Cargo.lock b/Cargo.lock index aade673..66dff57 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -177,9 +177,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "cc" -version = "1.1.34" +version = "1.1.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67b9470d453346108f93a59222a9a1a5724db32d0a4727b7ab7ace4b4d822dc9" +checksum = "0f57c4b4da2a9d619dd035f27316d7a426305b75be93d09e92f2b9229c34feaf" dependencies = [ "shlex", ] @@ -1467,7 +1467,7 @@ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" [[package]] name = "usage-cli" -version = "1.1.1" +version = "1.2.0" dependencies = [ "assert_cmd", "clap", @@ -1496,7 +1496,7 @@ dependencies = [ [[package]] name = "usage-lib" -version = "1.1.1" +version = "1.2.0" dependencies = [ "clap", "ctor", diff --git a/Cargo.toml b/Cargo.toml index 3e05532..fbd7af8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ license = "MIT" [workspace.dependencies] clap_usage = { path = "./clap_usage", version = "0.2.0" } usage-cli = { path = "./cli" } -usage-lib = { path = "./lib", version = "1.1.1", features = ["clap"] } +usage-lib = { path = "./lib", version = "1.2.0", features = ["clap"] } [workspace.metadata.release] allow-branch = ["main"] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 704acd6..2ac2d68 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "usage-cli" edition = "2021" -version = "1.1.1" +version = "1.2.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 02d7eac..d34b92e 100644 --- a/cli/usage.usage.kdl +++ b/cli/usage.usage.kdl @@ -1,6 +1,6 @@ name "usage-cli" bin "usage" -version "1.1.1" +version "1.2.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.md b/docs/cli/reference.md index 5d7ac02..703738c 100644 --- a/docs/cli/reference.md +++ b/docs/cli/reference.md @@ -1,5 +1,5 @@ # `usage` -- **version**: 1.1.1 +- **version**: 1.2.0 CLI for working with usage-based CLIs diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 7bd5bf2..3257032 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "usage-lib" edition = "2021" -version = "1.1.1" +version = "1.2.0" rust-version = "1.70.0" include = [ "/Cargo.toml",