diff --git a/CHANGELOG.md b/CHANGELOG.md index 55dec0ab1b3..8ffdf118c17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,9 @@ - **(es/minifier)** Ignore member expression without side-effects in assign position (#5344) ([8611161](https://github.com/swc-project/swc/commit/8611161c02223f6b1fb8734e648392794f2b1d81)) +- **(es/minifier)** Allow single-thread mode (#5353) ([fbdc9af](https://github.com/swc-project/swc/commit/fbdc9af5ca51e7e2a0ba42997dd9ffd14d5059f4)) + + - **(es/utils)** Fix `contains_top_level_await` (#5335) ([1d10c3e](https://github.com/swc-project/swc/commit/1d10c3e83725276fa466393fb7a3139f07fa66c7)) ### Features diff --git a/Cargo.lock b/Cargo.lock index ab372616deb..cb4debeca1b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3412,7 +3412,7 @@ dependencies = [ [[package]] name = "swc_ecma_minifier" -version = "0.142.3" +version = "0.142.4" dependencies = [ "ahash", "ansi_term", diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index 15869796bfb..f26defcd65f 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.142.3" +version = "0.142.4" [package.metadata.docs.rs] all-features = true