diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bc5596..48929f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.8.2](https://github.com/jdx/usage/compare/v0.8.1..v0.8.2) - 2024-09-28 + +### 🐛 Bug Fixes + +- whitespace in md generation by [@jdx](https://github.com/jdx) in [3cb7769](https://github.com/jdx/usage/commit/3cb776920cd9bd18693cdc0e547b98b0efd25aca) +- escape html in md by [@jdx](https://github.com/jdx) in [a691143](https://github.com/jdx/usage/commit/a6911436156c15246c69ea66e62e2745e419b813) +- more work on html encoding md by [@jdx](https://github.com/jdx) in [b5cb342](https://github.com/jdx/usage/commit/b5cb342fa79ac70bd2723c026f3184021e5ae3ac) + ## [0.8.1](https://github.com/jdx/usage/compare/v0.8.0..v0.8.1) - 2024-09-28 ### 🐛 Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index e0b391d..48117bb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1474,7 +1474,7 @@ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" [[package]] name = "usage-cli" -version = "0.8.1" +version = "0.8.2" dependencies = [ "assert_cmd", "clap", @@ -1501,7 +1501,7 @@ dependencies = [ [[package]] name = "usage-lib" -version = "0.8.1" +version = "0.8.2" dependencies = [ "clap", "ctor", diff --git a/Cargo.toml b/Cargo.toml index d033526..3a7c26d 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.8.1", features = ["clap"] } +usage-lib = { path = "./lib", version = "0.8.2", features = ["clap"] } [workspace.metadata.release] allow-branch = ["main"] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 594de37..04fac03 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "usage-cli" edition = "2021" -version = "0.8.1" +version = "0.8.2" 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 0d319e5..a5c4f18 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "usage-lib" edition = "2021" -version = "0.8.1" +version = "0.8.2" rust-version = "1.70.0" include = [ "/Cargo.toml",