From c35cc9369d5e0dc418986f7811a0dd702fb33ef9 Mon Sep 17 00:00:00 2001 From: daxpedda Date: Mon, 13 Jan 2025 15:08:35 +0100 Subject: [PATCH] Fix changelog (#4405) --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79a517578cd..85cfdd4dce9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,10 @@ ### Changed -* Deprecation warning when using an async function as a constructor +* Deprecate async constructors. [#4402](https://github.com/rustwasm/wasm-bindgen/pull/4402) +-------------------------------------------------------------------------------- ## [0.2.100](https://github.com/rustwasm/wasm-bindgen/compare/0.2.99...0.2.100) @@ -36,7 +37,6 @@ Released 2025-01-12 * `#[wasm_bindgen]` now correctly applies `#[cfg(...)]`s in `struct`s. [#4351](https://github.com/rustwasm/wasm-bindgen/pull/4351) - ### Changed * Optional parameters are now typed as `T | undefined | null` to reflect the actual JS behavior.