diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e358937934..b8a187de09e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,9 @@ - **(plugin)** Implement `Copy` and `Clone` for the comment proxy (#4280) ([3c4e520](https://github.com/swc-project/swc/commit/3c4e5204ecb51dd67c73ae5556c886b303891a23)) +- **(plugin)** Make more types serializable (#4289) ([281db2c](https://github.com/swc-project/swc/commit/281db2cc4f9af29577095038b37af5855a1e5aa5)) + + - **(plugin/runner)** Allow fs access from wasi plugin (#4279) ([fc3a2d0](https://github.com/swc-project/swc/commit/fc3a2d0cf9a4767076dda3fac929b24a50144730)) ### Miscellaneous Tasks diff --git a/Cargo.lock b/Cargo.lock index 7aa21de0647..f819ada1957 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3879,7 +3879,7 @@ dependencies = [ [[package]] name = "swc_plugin_runner" -version = "0.50.2" +version = "0.50.3" dependencies = [ "anyhow", "once_cell", diff --git a/crates/swc_plugin_runner/Cargo.toml b/crates/swc_plugin_runner/Cargo.toml index ef8c8dfdec7..5a2d20f45da 100644 --- a/crates/swc_plugin_runner/Cargo.toml +++ b/crates/swc_plugin_runner/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_plugin_runner" repository = "https://github.com/swc-project/swc.git" -version = "0.50.2" +version = "0.50.3" [lib] bench = false