diff --git a/CHANGELOG.md b/CHANGELOG.md index 799b503e79ec..816318ac4a07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,12 @@ # Changelog +## [unreleased] + +### Bug Fixes + + + +- **(es/minifier)** Abort seq inline on recursive usage ([#8887](https://github.com/swc-project/swc/issues/8887)) ([cd4548f](https://github.com/swc-project/swc/commit/cd4548fd8c32f67d0e8373f7a2c3cb625f43e6c4)) + ## [1.4.17] - 2024-04-23 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index e340d90a4005..7b0f30ab9b20 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3936,7 +3936,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.90.37" +version = "0.90.38" dependencies = [ "anyhow", "binding_macros", @@ -4469,7 +4469,7 @@ dependencies = [ [[package]] name = "swc_ecma_minifier" -version = "0.192.23" +version = "0.192.24" dependencies = [ "ansi_term", "anyhow", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 472a025593f1..e99e7117fce1 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.90.37" +version = "0.90.38" [package.metadata.docs.rs] features = [ "allocator_node", diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index 754720987458..f95f9a523352 100644 --- a/crates/swc_ecma_minifier/Cargo.toml +++ b/crates/swc_ecma_minifier/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"] license = "Apache-2.0" name = "swc_ecma_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.192.23" +version = "0.192.24" [package.metadata.docs.rs] all-features = true