diff --git a/CHANGELOG.md b/CHANGELOG.md index 824af296267..8fc9bf31a10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,9 @@ - **(es/minifier)** Preserve more labels (#4380) ([87859e3](https://github.com/swc-project/swc/commit/87859e373dd42857a52e5552a49e063c649b4607)) +- **(es/minifier)** Disable `conditionals` by default (#4391) ([375cc59](https://github.com/swc-project/swc/commit/375cc5975afffae27a9a7d5f1403ffd1328fdda1)) + + - **(plugin)** Align deps to fix build (#4377) ([8419b60](https://github.com/swc-project/swc/commit/8419b604300695e57cb6b1191e9daf638c65c828)) diff --git a/Cargo.lock b/Cargo.lock index e2fc65623fe..791be92c4aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3268,7 +3268,7 @@ dependencies = [ [[package]] name = "swc_ecma_minifier" -version = "0.105.0" +version = "0.105.1" dependencies = [ "ahash", "ansi_term", diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index 52c651cd8ff..99857074da6 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.105.0" +version = "0.105.1" [package.metadata.docs.rs] all-features = true