From af53b9487f74ff28438928903fb1f2db93fe4fa8 Mon Sep 17 00:00:00 2001 From: Donny Date: Thu, 20 Jan 2022 23:57:38 +0900 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ Cargo.lock | 8 ++++---- crates/swc/Cargo.toml | 8 ++++---- crates/swc_ecma_transforms/Cargo.toml | 4 ++-- crates/swc_ecma_transforms_compat/Cargo.toml | 2 +- crates/swc_ecmascript/Cargo.toml | 4 ++-- 6 files changed, 16 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b98b44b7c93..f17ad6fb7e4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ - **(css/parser)** Fix parsing of at rules (#3328) ([506a310](https://github.com/swc-project/swc/commit/506a31078aaebf50129658f096bbd5929995205f)) + +- **(es/compat)** Fix regression of `destructuring` (#3326) ([6d1ad36](https://github.com/swc-project/swc/commit/6d1ad368aca53ee64a63ae565cd015909f2f4458)) + ### Performance diff --git a/Cargo.lock b/Cargo.lock index 3c6598b33f21..4baa252c4a96 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2652,7 +2652,7 @@ dependencies = [ [[package]] name = "swc" -version = "0.116.15" +version = "0.116.16" dependencies = [ "ahash", "anyhow", @@ -3097,7 +3097,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms" -version = "0.113.3" +version = "0.113.4" dependencies = [ "pretty_assertions 0.7.2", "sourcemap", @@ -3157,7 +3157,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_compat" -version = "0.68.2" +version = "0.68.3" dependencies = [ "ahash", "arrayvec 0.7.2", @@ -3366,7 +3366,7 @@ dependencies = [ [[package]] name = "swc_ecmascript" -version = "0.110.14" +version = "0.110.15" dependencies = [ "swc_ecma_ast", "swc_ecma_codegen", diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 756cfc87dc13..2f02d2266521 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.116.15" +version = "0.116.16" [lib] name = "swc" @@ -55,7 +55,7 @@ swc_ecma_loader = {version = "0.27.0", path = "../swc_ecma_loader", features = [ swc_ecma_minifier = {version = "0.70.9", path = "../swc_ecma_minifier"} swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser"} swc_ecma_preset_env = {version = "0.86.1", path = "../swc_ecma_preset_env"} -swc_ecma_transforms = {version = "0.113.3", path = "../swc_ecma_transforms", features = [ +swc_ecma_transforms = {version = "0.113.4", path = "../swc_ecma_transforms", features = [ "compat", "module", "optimization", @@ -64,11 +64,11 @@ swc_ecma_transforms = {version = "0.113.3", path = "../swc_ecma_transforms", fea "typescript", ]} swc_ecma_transforms_base = {version = "0.57.1", path = "../swc_ecma_transforms_base"} -swc_ecma_transforms_compat = {version = "0.68.2", path = "../swc_ecma_transforms_compat"} +swc_ecma_transforms_compat = {version = "0.68.3", path = "../swc_ecma_transforms_compat"} swc_ecma_transforms_optimization = {version = "0.83.0", path = "../swc_ecma_transforms_optimization"} swc_ecma_utils = {version = "0.64.0", path = "../swc_ecma_utils"} swc_ecma_visit = {version = "0.51.1", path = "../swc_ecma_visit"} -swc_ecmascript = {version = "0.110.14", path = "../swc_ecmascript"} +swc_ecmascript = {version = "0.110.15", path = "../swc_ecmascript"} swc_node_comments = {version = "0.4.0", path = "../swc_node_comments"} swc_plugin_runner = {version = "0.30.0", path = "../swc_plugin_runner", optional = true} swc_visit = {version = "0.3.0", path = "../swc_visit"} diff --git a/crates/swc_ecma_transforms/Cargo.toml b/crates/swc_ecma_transforms/Cargo.toml index 1604f4e54331..a0aafae4b7a7 100644 --- a/crates/swc_ecma_transforms/Cargo.toml +++ b/crates/swc_ecma_transforms/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_transforms" repository = "https://github.com/swc-project/swc.git" -version = "0.113.3" +version = "0.113.4" [package.metadata.docs.rs] all-features = true @@ -28,7 +28,7 @@ swc_common = {version = "0.17.0", path = "../swc_common"} swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast"} swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser"} swc_ecma_transforms_base = {version = "0.57.1", path = "../swc_ecma_transforms_base"} -swc_ecma_transforms_compat = {version = "0.68.2", path = "../swc_ecma_transforms_compat", optional = true} +swc_ecma_transforms_compat = {version = "0.68.3", path = "../swc_ecma_transforms_compat", optional = true} swc_ecma_transforms_module = {version = "0.74.0", path = "../swc_ecma_transforms_module", optional = true} swc_ecma_transforms_optimization = {version = "0.83.0", path = "../swc_ecma_transforms_optimization", optional = true} swc_ecma_transforms_proposal = {version = "0.74.0", path = "../swc_ecma_transforms_proposal", optional = true} diff --git a/crates/swc_ecma_transforms_compat/Cargo.toml b/crates/swc_ecma_transforms_compat/Cargo.toml index 0ea660958e96..58374e3360d2 100644 --- a/crates/swc_ecma_transforms_compat/Cargo.toml +++ b/crates/swc_ecma_transforms_compat/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_transforms_compat" repository = "https://github.com/swc-project/swc.git" -version = "0.68.2" +version = "0.68.3" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] diff --git a/crates/swc_ecmascript/Cargo.toml b/crates/swc_ecmascript/Cargo.toml index 63680a06b24f..775208a5e0e1 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.110.14" +version = "0.110.15" [package.metadata.docs.rs] all-features = true @@ -39,7 +39,7 @@ swc_ecma_dep_graph = {version = "0.58.0", path = "../swc_ecma_dep_graph", option swc_ecma_minifier = {version = "0.70.9", path = "../swc_ecma_minifier", optional = true} swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser", optional = true, default-features = false} swc_ecma_preset_env = {version = "0.86.1", path = "../swc_ecma_preset_env", optional = true} -swc_ecma_transforms = {version = "0.113.3", path = "../swc_ecma_transforms", optional = true} +swc_ecma_transforms = {version = "0.113.4", path = "../swc_ecma_transforms", optional = true} swc_ecma_utils = {version = "0.64.0", path = "../swc_ecma_utils", optional = true} swc_ecma_visit = {version = "0.51.1", path = "../swc_ecma_visit", optional = true}