diff --git a/CHANGELOG.md b/CHANGELOG.md index 392a39b..70deb4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.12.0](https://github.com/jdx/usage/compare/v0.11.1..v0.12.0) - 2024-10-27 + +### 🚀 Features + +- added source code links by [@jdx](https://github.com/jdx) in [6bc9c84](https://github.com/jdx/usage/commit/6bc9c84fc7a6efaf09e30af75925488f761834bd) + +### 🐛 Bug Fixes + +- use prettier-compatible md list syntax by [@jdx](https://github.com/jdx) in [2726bf2](https://github.com/jdx/usage/commit/2726bf22e7c4fabb48322b58813ff50bda698fe5) + ## [0.11.1](https://github.com/jdx/usage/compare/v0.11.0..v0.11.1) - 2024-10-25 ### 🐛 Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 78cc2eb..cb23045 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1458,7 +1458,7 @@ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" [[package]] name = "usage-cli" -version = "0.11.1" +version = "0.12.0" dependencies = [ "assert_cmd", "clap", @@ -1485,7 +1485,7 @@ dependencies = [ [[package]] name = "usage-lib" -version = "0.11.1" +version = "0.12.0" dependencies = [ "clap", "ctor", diff --git a/Cargo.toml b/Cargo.toml index e56f58c..6347ff5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ license = "MIT" [workspace.dependencies] usage-cli = { path = "./cli" } -usage-lib = { path = "./lib", version = "0.11.1", features = ["clap"] } +usage-lib = { path = "./lib", version = "0.12.0", features = ["clap"] } [workspace.metadata.release] allow-branch = ["main"] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 6461eec..5ebbd55 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "usage-cli" edition = "2021" -version = "0.11.1" +version = "0.12.0" description = "CLI for working with usage-based CLIs" license = { workspace = true } authors = { workspace = true } diff --git a/lib/Cargo.toml b/lib/Cargo.toml index df8f31e..1a4fa86 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "usage-lib" edition = "2021" -version = "0.11.1" +version = "0.12.0" rust-version = "1.70.0" include = [ "/Cargo.toml",