diff --git a/CHANGELOG.md b/CHANGELOG.md index 01c6ac9..011b277 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/andreiltd/componentize-qjs/compare/v0.2.0...v0.2.1) - 2026-05-12 + +### Features + +- allow runtime builds without async support ([#19](https://github.com/andreiltd/componentize-qjs/pull/19)) + +### Miscellaneous + +- *(ci)* enable trusted publishing ([#22](https://github.com/andreiltd/componentize-qjs/pull/22)) +- bump binaryen and wasi-sdk ([#20](https://github.com/andreiltd/componentize-qjs/pull/20)) + ## [0.2.0](https://github.com/andreiltd/componentize-qjs/compare/v0.1.0...v0.2.0) - 2026-05-05 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index ed608e5..ec20d40 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -426,7 +426,7 @@ dependencies = [ [[package]] name = "componentize-qjs" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "bytes", @@ -448,7 +448,7 @@ dependencies = [ [[package]] name = "componentize-qjs-cli" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "assert_cmd", @@ -470,7 +470,7 @@ dependencies = [ [[package]] name = "componentize-qjs-napi" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "clap", @@ -484,7 +484,7 @@ dependencies = [ [[package]] name = "componentize-qjs-runtime" -version = "0.2.0" +version = "0.2.1" dependencies = [ "heck", "num_enum", diff --git a/Cargo.toml b/Cargo.toml index 5bfc6c9..7782b26 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ default-members = [".", "napi"] resolver = "2" [workspace.package] -version = "0.2.0" +version = "0.2.1" edition = "2024" rust-version = "1.94" license = "Apache-2.0" @@ -12,8 +12,8 @@ repository = "https://github.com/andreiltd/componentize-qjs" homepage = "https://github.com/andreiltd/componentize-qjs" [workspace.dependencies] -componentize-qjs = { path = "crates/core", version = "0.2.0", default-features = false } -componentize-qjs-cli = { path = ".", version = "0.2.0", default-features = false } +componentize-qjs = { path = "crates/core", version = "0.2.1", default-features = false } +componentize-qjs-cli = { path = ".", version = "0.2.1", default-features = false } anyhow = "1.0" clap = { version = "4", features = ["derive"] } tokio = { version = "1", default-features = false, features = ["rt", "macros"] } diff --git a/crates/core/CHANGELOG.md b/crates/core/CHANGELOG.md index e951e35..76722f6 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/andreiltd/componentize-qjs/compare/componentize-qjs-v0.2.0...componentize-qjs-v0.2.1) - 2026-05-12 + +### Features + +- allow runtime builds without async support ([#19](https://github.com/andreiltd/componentize-qjs/pull/19)) + +### Miscellaneous + +- *(ci)* enable trusted publishing ([#22](https://github.com/andreiltd/componentize-qjs/pull/22)) +- bump binaryen and wasi-sdk ([#20](https://github.com/andreiltd/componentize-qjs/pull/20)) + ## [0.2.0](https://github.com/andreiltd/componentize-qjs/compare/componentize-qjs-v0.1.0...componentize-qjs-v0.2.0) - 2026-05-05 ### Bug Fixes