diff --git a/CHANGELOG.md b/CHANGELOG.md index ec414490fc1..bae5394bd54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog ## [unreleased] +### Bug Fixes + + + +- **(es/minifier)** Fix switches (#4595) ([2ab7594](https://github.com/swc-project/swc/commit/2ab7594b4abf72c6e5d6da49b2c08e9faac44ffb)) + ### Features diff --git a/Cargo.lock b/Cargo.lock index c5c563fb452..b4dec818eda 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3580,7 +3580,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_optimization" -version = "0.121.1" +version = "0.121.2" dependencies = [ "ahash", "dashmap", diff --git a/crates/swc_ecma_transforms_optimization/Cargo.toml b/crates/swc_ecma_transforms_optimization/Cargo.toml index 6330a87a6be..fa70177cb14 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.121.1" +version = "0.121.2" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib]