diff --git a/CHANGELOG.md b/CHANGELOG.md index 703a0b06678..2e491add483 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ +- **(es/compat)** Fix evaluation order of computed class keys (#5621) ([d18ee54](https://github.com/swc-project/swc/commit/d18ee54aef2476e27375da9b1a05396584eade02)) + +## [1.2.244] - 2022-08-26 + +### Bug Fixes + + + - **(es/compat)** Ignore invalid class method names (#5612) ([1181d0f](https://github.com/swc-project/swc/commit/1181d0ffe2b432a202398dfc99dcc89da7480b84)) diff --git a/Cargo.lock b/Cargo.lock index d62051c3c78..da8a7a0bbc0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3565,7 +3565,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_compat" -version = "0.127.0" +version = "0.127.1" dependencies = [ "ahash", "arrayvec", diff --git a/crates/swc_ecma_transforms_compat/Cargo.toml b/crates/swc_ecma_transforms_compat/Cargo.toml index 57d9780c060..d2015f312ea 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.127.0" +version = "0.127.1" [lib] bench = false