diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6969ddf..18cac80 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.3" + ".": "0.3.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index fe15045..65dd4a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.3.4](https://github.com/dstoc/cladding/compare/v0.3.3...v0.3.4) (2026-09-12) + + +### Features + +* allow choosing expose bind address ([18ba7f4](https://github.com/dstoc/cladding/commit/18ba7f48cb05e33c3802076b20715bc11e0cb96f)) + + +### Bug Fixes + +* detect incomplete runtime before cladding up ([f290b5d](https://github.com/dstoc/cladding/commit/f290b5dc85e1c25189cf78cab245e34df70195f7)) +* satisfy clippy question-mark lint ([8173ba2](https://github.com/dstoc/cladding/commit/8173ba2c584a991bc2b917e653b2580df231f1cd)) + ## [0.3.3](https://github.com/dstoc/cladding/compare/v0.3.2...v0.3.3) (2026-06-20) diff --git a/Cargo.lock b/Cargo.lock index 26250ae..77e0cbf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -334,7 +334,7 @@ dependencies = [ [[package]] name = "cladding" -version = "0.3.3" +version = "0.3.4" dependencies = [ "anyhow", "clap", @@ -1287,7 +1287,7 @@ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" [[package]] name = "mcp-run" -version = "0.3.3" +version = "0.3.4" dependencies = [ "axum", "base64", diff --git a/Cargo.toml b/Cargo.toml index c46db47..b772357 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cladding" -version = "0.3.3" +version = "0.3.4" edition = "2024" build = "build.rs" diff --git a/crates/mcp-run/Cargo.toml b/crates/mcp-run/Cargo.toml index e215068..d82a667 100644 --- a/crates/mcp-run/Cargo.toml +++ b/crates/mcp-run/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mcp-run" -version = "0.3.3" +version = "0.3.4" edition = "2024" [dependencies]