diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c1247e41ca..4e784f74609 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,9 @@ - **(css/ast)** Make `raw` optional (#5211) ([b65a16c](https://github.com/swc-project/swc/commit/b65a16c7aa58bca57ad861ca015867f89fb80a79)) +- **(es/lints)** Support `ignoreReadBeforeAssign` for `prefer-const` (#4933) ([d035648](https://github.com/swc-project/swc/commit/d0356489cb1dfae8e6ced8dd239643bf6f5b029d)) + + - **(html/ast)** Add `raw` to attributes (#5208) ([64237fa](https://github.com/swc-project/swc/commit/64237fa7fb9c95030f92892143f476c2573bed75)) diff --git a/Cargo.lock b/Cargo.lock index 6c72853f543..4d36014e2e0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3363,7 +3363,7 @@ dependencies = [ [[package]] name = "swc_ecma_lints" -version = "0.53.0" +version = "0.53.1" dependencies = [ "ahash", "auto_impl", diff --git a/crates/swc_ecma_lints/Cargo.toml b/crates/swc_ecma_lints/Cargo.toml index 47c2fdb8714..08feb45592c 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.53.0" +version = "0.53.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib]