From 03a0d903a0098b6528c2aadb308950ba2d2c4bb8 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Sun, 23 Jun 2024 14:56:34 +0000 Subject: [PATCH] chore: Bump crates --- CHANGELOG.md | 11 ++++++++--- Cargo.lock | 4 ++-- crates/swc_core/Cargo.toml | 2 +- crates/swc_ecma_parser/Cargo.toml | 2 +- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c0f8b95b0be..1807bc00b0fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,12 @@ # Changelog +## [unreleased] + +### Performance + + + +- **(es/parser)** Optimize macros ([#9100](https://github.com/swc-project/swc/issues/9100)) ([719b7c5](https://github.com/swc-project/swc/commit/719b7c54f69ef276270dc39fbcb8bbdbf52899bf)) + ## [1.6.4] - 2024-06-22 ### Features @@ -1313,9 +1321,6 @@ - **(es/fixer)** Wrap yield expression in await expression ([#8357](https://github.com/swc-project/swc/issues/8357)) ([ff719f0](https://github.com/swc-project/swc/commit/ff719f0cdd3cf79e7afa1c136243e6fa53c5abe3)) -- **(es/minifier)** Fix `if_return` bug related to `await` and `yield` ([#8328](https://github.com/swc-project/swc/issues/8328)) ([01e2c7f](https://github.com/swc-project/swc/commit/01e2c7fc5ab71d55c522e48eae9e3e08d8bf418d)) - - - **(es/minifier)** Give up terminate merge if in `try` with `finally` ([#8342](https://github.com/swc-project/swc/issues/8342)) ([ed5a9b3](https://github.com/swc-project/swc/commit/ed5a9b3f2e5b7035f657a8ea3cb38a27413369b2)) diff --git a/Cargo.lock b/Cargo.lock index ff0a789cc905..583d20ec28a0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3929,7 +3929,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.95.6" +version = "0.95.7" dependencies = [ "anyhow", "binding_macros", @@ -4506,7 +4506,7 @@ dependencies = [ [[package]] name = "swc_ecma_parser" -version = "0.146.3" +version = "0.146.4" dependencies = [ "criterion", "either", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 1e20bd9ea72b..546176a4ad03 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.95.6" +version = "0.95.7" [package.metadata.docs.rs] features = [ "allocator_node", diff --git a/crates/swc_ecma_parser/Cargo.toml b/crates/swc_ecma_parser/Cargo.toml index 0be34379e90e..5904596c52de 100644 --- a/crates/swc_ecma_parser/Cargo.toml +++ b/crates/swc_ecma_parser/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "examples/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_parser" repository = "https://github.com/swc-project/swc.git" -version = "0.146.3" +version = "0.146.4" [package.metadata.docs.rs] all-features = true