diff --git a/CHANGELOG.md b/CHANGELOG.md index 1807bc00b0fb..c88ee1f4fa48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ - **(es/parser)** Optimize macros ([#9100](https://github.com/swc-project/swc/issues/9100)) ([719b7c5](https://github.com/swc-project/swc/commit/719b7c54f69ef276270dc39fbcb8bbdbf52899bf)) + +- **(es/parser)** Remove unnecessary check ([#9102](https://github.com/swc-project/swc/issues/9102)) ([2a490ad](https://github.com/swc-project/swc/commit/2a490ad0b2f9f89260742e653ba9ca086c1a9798)) + ## [1.6.4] - 2024-06-22 ### Features @@ -1329,9 +1332,6 @@ - **(es/react)** Make jsx with single spread child static ([#8339](https://github.com/swc-project/swc/issues/8339)) ([58568fa](https://github.com/swc-project/swc/commit/58568fa23be932ed8f3858c24962973bdc4b8057)) - -- **(es/renamer)** Allow `globalThis` to be shadowed ([#8327](https://github.com/swc-project/swc/issues/8327)) ([3dd73a3](https://github.com/swc-project/swc/commit/3dd73a3cd8fddd9e19dc85c2a2bf785b585b5b9a)) - ### Miscellaneous Tasks diff --git a/Cargo.lock b/Cargo.lock index 583d20ec28a0..f5b577954f9e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3929,7 +3929,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.95.7" +version = "0.95.8" dependencies = [ "anyhow", "binding_macros", @@ -4506,7 +4506,7 @@ dependencies = [ [[package]] name = "swc_ecma_parser" -version = "0.146.4" +version = "0.146.5" dependencies = [ "criterion", "either", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 546176a4ad03..134994a3519a 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.7" +version = "0.95.8" [package.metadata.docs.rs] features = [ "allocator_node", diff --git a/crates/swc_ecma_parser/Cargo.toml b/crates/swc_ecma_parser/Cargo.toml index 5904596c52de..414dd05fefb7 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.4" +version = "0.146.5" [package.metadata.docs.rs] all-features = true