diff --git a/Cargo.lock b/Cargo.lock index 011387af..77272694 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1381,7 +1381,7 @@ dependencies = [ [[package]] name = "javy" -version = "2.2.0-alpha.1" +version = "2.2.0" dependencies = [ "anyhow", "quickjs-wasm-rs", @@ -1392,7 +1392,7 @@ dependencies = [ [[package]] name = "javy-apis" -version = "2.2.0-alpha.1" +version = "2.2.0" dependencies = [ "anyhow", "fastrand", @@ -1945,7 +1945,7 @@ dependencies = [ [[package]] name = "quickjs-wasm-rs" -version = "3.0.0-alpha.1" +version = "3.0.0" dependencies = [ "anyhow", "once_cell", @@ -1957,7 +1957,7 @@ dependencies = [ [[package]] name = "quickjs-wasm-sys" -version = "1.2.0-alpha.1" +version = "1.2.0" dependencies = [ "anyhow", "bindgen", diff --git a/Cargo.toml b/Cargo.toml index fb7f3a07..433588a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ wasmtime-wasi = "16" wasi-common = "16" anyhow = "1.0" once_cell = "1.19" -javy = { path = "crates/javy", version = "2.2.0-alpha.1" } +javy = { path = "crates/javy", version = "2.2.0" } [profile.release] lto = true diff --git a/crates/apis/CHANGELOG.md b/crates/apis/CHANGELOG.md index e1af5537..8cb293e6 100644 --- a/crates/apis/CHANGELOG.md +++ b/crates/apis/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.2.0] - 2024-01-31 + ### Changed - Updated to 2023-12-09 release of QuickJS. diff --git a/crates/apis/Cargo.toml b/crates/apis/Cargo.toml index efb311b7..b0afd09a 100644 --- a/crates/apis/Cargo.toml +++ b/crates/apis/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "javy-apis" -version = "2.2.0-alpha.1" +version = "2.2.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/crates/javy/CHANGELOG.md b/crates/javy/CHANGELOG.md index 41c3f2b9..68f15a2d 100644 --- a/crates/javy/CHANGELOG.md +++ b/crates/javy/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.2.0] - 2024-01-31 + ### Fixed - Missing documentation for `export_alloc_fns` feature and `alloc` functions. diff --git a/crates/javy/Cargo.toml b/crates/javy/Cargo.toml index 078f93b1..1880e701 100644 --- a/crates/javy/Cargo.toml +++ b/crates/javy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "javy" -version = "2.2.0-alpha.1" +version = "2.2.0" authors.workspace = true edition.workspace = true license.workspace = true @@ -11,7 +11,7 @@ categories = ["wasm"] [dependencies] anyhow = { workspace = true } -quickjs-wasm-rs = { version = "3.0.0-alpha.1", path = "../quickjs-wasm-rs" } +quickjs-wasm-rs = { version = "3.0.0", path = "../quickjs-wasm-rs" } serde_json = { version = "1.0", optional = true } serde-transcode = { version = "1.1", optional = true } rmp-serde = { version = "^1.1", optional = true } diff --git a/crates/quickjs-wasm-rs/CHANGELOG.md b/crates/quickjs-wasm-rs/CHANGELOG.md index 048df17e..d88f7a31 100644 --- a/crates/quickjs-wasm-rs/CHANGELOG.md +++ b/crates/quickjs-wasm-rs/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [3.0.0] - 2024-01-31 + ### Changed - Make `JSContextRef::wrap_rust_value` private. Similar to diff --git a/crates/quickjs-wasm-rs/Cargo.toml b/crates/quickjs-wasm-rs/Cargo.toml index 534a7b89..b85e9e01 100644 --- a/crates/quickjs-wasm-rs/Cargo.toml +++ b/crates/quickjs-wasm-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quickjs-wasm-rs" -version = "3.0.0-alpha.1" +version = "3.0.0" authors.workspace = true edition.workspace = true license.workspace = true @@ -11,7 +11,7 @@ categories = ["api-bindings"] [dependencies] anyhow = { workspace = true } -quickjs-wasm-sys = { version = "1.2.0-alpha.1", path = "../quickjs-wasm-sys" } +quickjs-wasm-sys = { version = "1.2.0", path = "../quickjs-wasm-sys" } serde = { version = "1.0", features = ["derive"] } once_cell = "1.19" diff --git a/crates/quickjs-wasm-sys/CHANGELOG.md b/crates/quickjs-wasm-sys/CHANGELOG.md index 648adb23..fb0a3d58 100644 --- a/crates/quickjs-wasm-sys/CHANGELOG.md +++ b/crates/quickjs-wasm-sys/CHANGELOG.md @@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## Unreleased changes + +## [1.2.0] - 2024-01-31 - Changed: Updated to 2023-12-09 release of QuickJS. diff --git a/crates/quickjs-wasm-sys/Cargo.toml b/crates/quickjs-wasm-sys/Cargo.toml index 86e99285..e33ec3f9 100644 --- a/crates/quickjs-wasm-sys/Cargo.toml +++ b/crates/quickjs-wasm-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quickjs-wasm-sys" -version = "1.2.0-alpha.1" +version = "1.2.0" authors.workspace = true edition.workspace = true license.workspace = true