diff --git a/CHANGELOG.md b/CHANGELOG.md index 69db9649d82..fd8bdc6c15c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,9 @@ +- **(es/minifier)** Remove extra parens in `BinExpr` (#4878) ([83ae6a1](https://github.com/swc-project/swc/commit/83ae6a1f1f8a293d88557767790ed5d662e84bc3)) + + - **(html/minifier)** Improve compression of attributes (#4849) ([c5df1a3](https://github.com/swc-project/swc/commit/c5df1a3a54e1445163efb38b4da339ccaed699d0)) diff --git a/Cargo.lock b/Cargo.lock index 451cb2d3f88..acaeac69da9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3766,7 +3766,7 @@ dependencies = [ [[package]] name = "swc_ecma_utils" -version = "0.85.1" +version = "0.85.2" dependencies = [ "indexmap", "once_cell", diff --git a/crates/swc_ecma_utils/Cargo.toml b/crates/swc_ecma_utils/Cargo.toml index 447776fb4c2..1c6c5fef176 100644 --- a/crates/swc_ecma_utils/Cargo.toml +++ b/crates/swc_ecma_utils/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_utils" repository = "https://github.com/swc-project/swc.git" -version = "0.85.1" +version = "0.85.2" [package.metadata.docs.rs] all-features = true