From d9f2196be2fb21f6c6efc3f6dfe84db5680bc311 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Cabrera?= Date: Wed, 12 Jun 2024 09:39:07 -0400 Subject: [PATCH] Prepare v3.0.0 for the `javy` crate --- Cargo.lock | 2 +- Cargo.toml | 2 +- crates/javy/CHANGELOG.md | 2 ++ crates/javy/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 459c65bb..fc832e51 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1684,7 +1684,7 @@ dependencies = [ [[package]] name = "javy" -version = "3.0.0-alpha.1" +version = "3.0.0" dependencies = [ "anyhow", "bitflags", diff --git a/Cargo.toml b/Cargo.toml index 094414a5..c3cef1f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,8 +25,8 @@ wasi-common = "19" anyhow = "1.0" once_cell = "1.19" bitflags = "2.5.0" -javy = { path = "crates/javy", version = "3.0.0-alpha.1" } javy-config = { path = "crates/javy-config" } +javy = { path = "crates/javy", version = "3.0.0" } [profile.release] lto = true diff --git a/crates/javy/CHANGELOG.md b/crates/javy/CHANGELOG.md index ad38ee1f..5926f4bf 100644 --- a/crates/javy/CHANGELOG.md +++ b/crates/javy/CHANGELOG.md @@ -8,6 +8,8 @@ Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [3.0.0] - 2024-06-12 + ### Changed - Introduce `rquickjs` to interface with QuickJS instead of `quickjs-wasm-rs`; diff --git a/crates/javy/Cargo.toml b/crates/javy/Cargo.toml index d5c4ff32..6a5c801a 100644 --- a/crates/javy/Cargo.toml +++ b/crates/javy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "javy" -version = "3.0.0-alpha.1" +version = "3.0.0" authors.workspace = true edition.workspace = true license.workspace = true