diff --git a/CHANGELOG.md b/CHANGELOG.md index ebc3a0f0306..c9365b64722 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,9 @@ - **(es/minifier)** Use efficient logic for entry tracking in DCE (#5749) ([08b2aea](https://github.com/swc-project/swc/commit/08b2aea2b0d1d0bec707394d9f5cf6d2713431a9)) + +- **(es/minifier)** Cache the list of bindings for DCE (#5750) ([8789184](https://github.com/swc-project/swc/commit/8789184d447eb09e1b0dddc6156ac150d4cbf0d7)) + ### Refactor diff --git a/Cargo.lock b/Cargo.lock index 7f88e291af9..613eb5c5a1f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3422,7 +3422,7 @@ dependencies = [ [[package]] name = "swc_ecma_minifier" -version = "0.152.6" +version = "0.152.7" dependencies = [ "ahash", "ansi_term", @@ -3691,7 +3691,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_optimization" -version = "0.160.7" +version = "0.160.8" dependencies = [ "ahash", "dashmap", diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index 66615762fb7..87d52581d1b 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.152.6" +version = "0.152.7" [package.metadata.docs.rs] all-features = true diff --git a/crates/swc_ecma_transforms_optimization/Cargo.toml b/crates/swc_ecma_transforms_optimization/Cargo.toml index 9aafcc0d559..071b63d20ef 100644 --- a/crates/swc_ecma_transforms_optimization/Cargo.toml +++ b/crates/swc_ecma_transforms_optimization/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_transforms_optimization" repository = "https://github.com/swc-project/swc.git" -version = "0.160.7" +version = "0.160.8" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib]