diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e6778e25a1d..76b9a06fa9fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,12 @@ # Changelog +## [unreleased] + +### Features + + + +- **(plugin/runner)** Add description about wasi and file system ([#8963](https://github.com/swc-project/swc/issues/8963)) ([ced63a9](https://github.com/swc-project/swc/commit/ced63a973e48e542bc889675b2f2d4fb48abfb8d)) + ## [1.5.8] - 2024-05-20 ### Bug Fixes @@ -1380,12 +1388,4 @@ - **(es/minifier)** Decouple `assign_count` from `reassigned` ([#8137](https://github.com/swc-project/swc/issues/8137)) ([13106e0](https://github.com/swc-project/swc/commit/13106e0d2eaa08c4c74f58205f57c4f2d7d4479f)) -## [1.3.93] - 2023-10-13 - -### Refactor - - - -- **(es/compat)** Split `swc_ecma_transforms_compat` ([#8110](https://github.com/swc-project/swc/issues/8110)) ([affb6fb](https://github.com/swc-project/swc/commit/affb6fb5e3e363f1eb4d42d4501a4a806c4060f7)) - diff --git a/Cargo.lock b/Cargo.lock index 73c2e5982521..10061519908c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3936,7 +3936,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.92.5" +version = "0.92.6" dependencies = [ "anyhow", "binding_macros", @@ -5228,7 +5228,7 @@ dependencies = [ [[package]] name = "swc_plugin_runner" -version = "0.107.1" +version = "0.107.2" dependencies = [ "anyhow", "criterion", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 1d0047d0c4f6..bfacfe4eaa46 100644 --- a/crates/swc_core/Cargo.toml +++ b/crates/swc_core/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_core" repository = "https://github.com/swc-project/swc.git" -version = "0.92.5" +version = "0.92.6" [package.metadata.docs.rs] features = [ "allocator_node", diff --git a/crates/swc_plugin_runner/Cargo.toml b/crates/swc_plugin_runner/Cargo.toml index 6d531be5f15a..342b5d500c98 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.107.1" +version = "0.107.2" [lib] bench = false