diff --git a/CHANGELOG.md b/CHANGELOG.md index c63ee65806b..e5054d0fdac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,9 @@ - **(es/compat)** Preserve spans in `object_rest_spread` (#5082) ([de66b64](https://github.com/swc-project/swc/commit/de66b64aed13166803ebdfb91d1c421eec064c25)) +- **(es/compat)** Preserve class names (#5104) ([adbb0bf](https://github.com/swc-project/swc/commit/adbb0bf8d8391aa4f15d64c72be701c03de98617)) + + - **(es/lints)** Cover more `const-assign` cases (#5098) ([f7d857c](https://github.com/swc-project/swc/commit/f7d857c6b6c32ad228aa929d0301b22c9d34ff8b)) diff --git a/Cargo.lock b/Cargo.lock index 60830d4ca58..30ce5c50ba7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3601,7 +3601,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_compat" -version = "0.110.0" +version = "0.110.1" dependencies = [ "ahash", "arrayvec", diff --git a/crates/swc_ecma_transforms_compat/Cargo.toml b/crates/swc_ecma_transforms_compat/Cargo.toml index a31700cd073..f1aa79e62c9 100644 --- a/crates/swc_ecma_transforms_compat/Cargo.toml +++ b/crates/swc_ecma_transforms_compat/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_transforms_compat" repository = "https://github.com/swc-project/swc.git" -version = "0.110.0" +version = "0.110.1" [lib] bench = false