From ca1ab4be836cc02cb485ed4fb595dd6afa37b105 Mon Sep 17 00:00:00 2001 From: Shane Madden Date: Wed, 14 Aug 2024 20:00:56 -0600 Subject: [PATCH] Prep 0.21.3 release, downgrading wasm-bindgen to compatible version --- CHANGELOG.md | 6 +++++- Cargo.toml | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c8ca6f7..b92ace41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,16 @@ Unreleased ========== +### Bugfixes: + +- Temporarily pin to wasm-bindgen 0.2.92 due to incompatible generated javascript + 0.21.2 (2024-08-14) =================== ### Bugfixes: -- Update for new string enum implementation's implementation in wasm-bindgen 0.2.93 +- Update for new string enum implementation in wasm-bindgen 0.2.93 ### Misc: diff --git a/Cargo.toml b/Cargo.toml index 0be27864..5784c9d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "screeps-game-api" -version = "0.21.2" +version = "0.21.3" authors = ["David Ross "] documentation = "https://docs.rs/screeps-game-api/" edition = "2021" @@ -39,7 +39,7 @@ serde = { version = "1", features = ["derive"] } serde_json = "1" serde_repr = "0.1" serde-wasm-bindgen = "0.6" -wasm-bindgen = "0.2" +wasm-bindgen = "=0.2.92" [dev-dependencies] bincode = "1.3"