diff --git a/CHANGELOG.md b/CHANGELOG.md index cc913589f58..d766d96f8e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,9 @@ - **(css/parser)** Improve selector parser (#3386) ([c73835b](https://github.com/swc-project/swc/commit/c73835bfebe56518e107a3666fe95ca649d33a24)) +- **(es/lints)** Implement `no-debugger` rule (#3398) ([9dec923](https://github.com/swc-project/swc/commit/9dec9236f7b3c95c803571404d7abae71e173936)) + + - **(es/minifier)** Implement `drop_console` (#3392) ([91d7800](https://github.com/swc-project/swc/commit/91d78000ea445575f9ac30d0f36299ab4f0cbf5c)) ### Miscellaneous Tasks diff --git a/Cargo.lock b/Cargo.lock index 3783aae9c1e..13c6c37db46 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2611,7 +2611,7 @@ dependencies = [ [[package]] name = "swc" -version = "0.119.8" +version = "0.119.9" dependencies = [ "ahash", "anyhow", @@ -2919,7 +2919,7 @@ dependencies = [ [[package]] name = "swc_ecma_lints" -version = "0.11.0" +version = "0.11.1" dependencies = [ "auto_impl", "parking_lot", diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 4771ff16659..3064dea5060 100644 --- a/crates/swc/Cargo.toml +++ b/crates/swc/Cargo.toml @@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc" repository = "https://github.com/swc-project/swc.git" -version = "0.119.8" +version = "0.119.9" [lib] name = "swc" @@ -50,7 +50,7 @@ swc_common = {version = "0.17.0", path = "../swc_common", features = ["sourcemap swc_ecma_ast = {version = "0.65.3", path = "../swc_ecma_ast"} swc_ecma_codegen = {version = "0.89.1", path = "../swc_ecma_codegen"} swc_ecma_ext_transforms = {version = "0.50.0", path = "../swc_ecma_ext_transforms"} -swc_ecma_lints = {version = "0.11.0", path = "../swc_ecma_lints"} +swc_ecma_lints = {version = "0.11.1", path = "../swc_ecma_lints"} swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader", features = ["lru", "node", "tsc"]} swc_ecma_minifier = {version = "0.71.4", path = "../swc_ecma_minifier"} swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser"} diff --git a/crates/swc_ecma_lints/Cargo.toml b/crates/swc_ecma_lints/Cargo.toml index e09b9b03929..91ee46573a4 100644 --- a/crates/swc_ecma_lints/Cargo.toml +++ b/crates/swc_ecma_lints/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_lints" repository = "https://github.com/swc-project/swc.git" -version = "0.11.0" +version = "0.11.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies]