From a5b3dd815b5ce07e9d0ef80f0db3872f8417e9ab Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Tue, 15 Feb 2022 16:30:56 +0900 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ Cargo.lock | 6 +++--- crates/swc/Cargo.toml | 6 +++--- crates/swc_ecma_minifier/Cargo.toml | 2 +- crates/swc_ecmascript/Cargo.toml | 4 ++-- 5 files changed, 12 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 51053b14170..d8674451beb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,9 @@ - **(es/minifier)** Fix analyzer (#3557) ([ac1d405](https://github.com/swc-project/swc/commit/ac1d4058f276693f52d5ccec5ccbb4c04f62bc9f)) +- **(es/minifier)** Disable name mangler if `eval` is used (#3526) ([bfc9897](https://github.com/swc-project/swc/commit/bfc9897e347e2adc6efb5bd66151abdb9cbaa4fa)) + + - **(es/utils)** Keep arguments to `super` call (#3570) ([f67796a](https://github.com/swc-project/swc/commit/f67796a962cfd1e5c33206622c325dfbdd3b4ee2)) ### Documentation diff --git a/Cargo.lock b/Cargo.lock index 11aefadbb56..95febadd603 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2598,7 +2598,7 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" [[package]] name = "swc" -version = "0.126.1" +version = "0.126.2" dependencies = [ "ahash", "anyhow", @@ -2946,7 +2946,7 @@ dependencies = [ [[package]] name = "swc_ecma_minifier" -version = "0.74.0" +version = "0.74.1" dependencies = [ "ahash", "ansi_term", @@ -3300,7 +3300,7 @@ dependencies = [ [[package]] name = "swc_ecmascript" -version = "0.114.1" +version = "0.114.2" dependencies = [ "swc_ecma_ast", "swc_ecma_codegen", diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 3cd87fbc62f..e8138c25a2e 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.126.1" +version = "0.126.2" [lib] name = "swc" @@ -52,7 +52,7 @@ swc_ecma_codegen = {version = "0.90.0", path = "../swc_ecma_codegen"} swc_ecma_ext_transforms = {version = "0.51.0", path = "../swc_ecma_ext_transforms"} swc_ecma_lints = {version = "0.14.5", path = "../swc_ecma_lints"} swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader", features = ["lru", "node", "tsc"]} -swc_ecma_minifier = {version = "0.74.0", path = "../swc_ecma_minifier"} +swc_ecma_minifier = {version = "0.74.1", path = "../swc_ecma_minifier"} swc_ecma_parser = {version = "0.88.3", path = "../swc_ecma_parser"} swc_ecma_preset_env = {version = "0.90.0", path = "../swc_ecma_preset_env"} swc_ecma_transforms = {version = "0.117.0", path = "../swc_ecma_transforms", features = [ @@ -68,7 +68,7 @@ swc_ecma_transforms_compat = {version = "0.70.0", path = "../swc_ecma_transforms swc_ecma_transforms_optimization = {version = "0.87.0", path = "../swc_ecma_transforms_optimization"} swc_ecma_utils = {version = "0.65.3", path = "../swc_ecma_utils"} swc_ecma_visit = {version = "0.51.1", path = "../swc_ecma_visit"} -swc_ecmascript = {version = "0.114.1", path = "../swc_ecmascript"} +swc_ecmascript = {version = "0.114.2", path = "../swc_ecmascript"} swc_node_comments = {version = "0.4.0", path = "../swc_node_comments"} swc_plugin_runner = {version = "0.33.0", path = "../swc_plugin_runner", optional = true} swc_visit = {version = "0.3.0", path = "../swc_visit"} diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index cee08f7e403..d9f2933e519 100644 --- a/crates/swc_ecma_minifier/Cargo.toml +++ b/crates/swc_ecma_minifier/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"] license = "Apache-2.0" name = "swc_ecma_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.74.0" +version = "0.74.1" [package.metadata.docs.rs] all-features = true diff --git a/crates/swc_ecmascript/Cargo.toml b/crates/swc_ecmascript/Cargo.toml index 72f18552e5f..397d025fe58 100644 --- a/crates/swc_ecmascript/Cargo.toml +++ b/crates/swc_ecmascript/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecmascript" repository = "https://github.com/swc-project/swc.git" -version = "0.114.1" +version = "0.114.2" [package.metadata.docs.rs] all-features = true @@ -36,7 +36,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"] swc_ecma_ast = {version = "0.65.3", path = "../swc_ecma_ast"} swc_ecma_codegen = {version = "0.90.0", path = "../swc_ecma_codegen", optional = true} swc_ecma_dep_graph = {version = "0.59.0", path = "../swc_ecma_dep_graph", optional = true} -swc_ecma_minifier = {version = "0.74.0", path = "../swc_ecma_minifier", optional = true} +swc_ecma_minifier = {version = "0.74.1", path = "../swc_ecma_minifier", optional = true} swc_ecma_parser = {version = "0.88.2", path = "../swc_ecma_parser", optional = true, default-features = false} swc_ecma_preset_env = {version = "0.90.0", path = "../swc_ecma_preset_env", optional = true} swc_ecma_transforms = {version = "0.117.0", path = "../swc_ecma_transforms", optional = true}