diff --git a/CHANGELOG.md b/CHANGELOG.md index 5332c88fb91..07d1a6eb45c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,9 @@ - **(es/lints)** Use `Str.raw` instead of source map (#4139) ([d8a988e](https://github.com/swc-project/swc/commit/d8a988ef3d5dfba839af0866ead73faf54f205dc)) +- **(es/lints)** Improve error messages (#4142) ([0f92eda](https://github.com/swc-project/swc/commit/0f92eda0c78277d3de83ae85cf8a5c04e9c437bf)) + + - **(es/minifier)** Implement some unsafe evaluation rules (#4133) ([1d3763d](https://github.com/swc-project/swc/commit/1d3763d96c94638bb0828110cc90bd123f96e327)) diff --git a/Cargo.lock b/Cargo.lock index 19759f3de93..cabb2f6e44d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3315,7 +3315,7 @@ dependencies = [ [[package]] name = "swc_ecma_lints" -version = "0.27.1" +version = "0.27.2" dependencies = [ "ahash", "auto_impl", diff --git a/crates/swc_ecma_lints/Cargo.toml b/crates/swc_ecma_lints/Cargo.toml index ca3109c5753..acdc02d7a1b 100644 --- a/crates/swc_ecma_lints/Cargo.toml +++ b/crates/swc_ecma_lints/Cargo.toml @@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_lints" repository = "https://github.com/swc-project/swc.git" -version = "0.27.1" +version = "0.27.2" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies]