diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ecd61aa3b88..1ffbcfeb6557 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,6 +43,9 @@ - **(bindings)** Fix jemalloc on aarch64 (#6541) ([d56b5a8](https://github.com/swc-project/swc/commit/d56b5a890a69a9a9177eed2a955f2c959fd1eaa1)) + +- **(swc_core)** Reexport more modules (#6548) ([9b58cce](https://github.com/swc-project/swc/commit/9b58cce10bf5d313b6397c0366222c51db19eaca)) + ### Performance diff --git a/Cargo.lock b/Cargo.lock index b0671554426c..8704584c1a21 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3267,7 +3267,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.44.0" +version = "0.44.1" dependencies = [ "anyhow", "binding_macros", @@ -3294,6 +3294,7 @@ dependencies = [ "swc_ecma_preset_env", "swc_ecma_quote_macros", "swc_ecma_transforms_base", + "swc_ecma_transforms_compat", "swc_ecma_transforms_module", "swc_ecma_transforms_optimization", "swc_ecma_transforms_proposal", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 321fd1a4a1f1..95f68176902e 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.44.0" +version = "0.44.1" [package.metadata.docs.rs] features = [ "common_perf",