From ba4083959fda183c37e7782d2e80fd7d3f7a04e0 Mon Sep 17 00:00:00 2001 From: Donny Date: Mon, 17 Jan 2022 22:41:25 +0900 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ Cargo.lock | 6 +++--- crates/swc/Cargo.toml | 6 +++--- crates/swc_ecma_ast/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 a692c9b10aa..c82e60fd4e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ +- **(es/compat)** Apply `static_blocks` before `class_properties` (#3292) ([89235b8](https://github.com/swc-project/swc/commit/89235b8294dedb4dd50c85e2a3b3ce41bddac85e)) + + - **(es/minifier)** Fix analysis of unary expressions (#3286) ([b55ae4b](https://github.com/swc-project/swc/commit/b55ae4b312b5677efeb9f3e9697dc2bcff81e322)) diff --git a/Cargo.lock b/Cargo.lock index f7ab7ce6990..8dff6de0ee9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2652,7 +2652,7 @@ dependencies = [ [[package]] name = "swc" -version = "0.116.4" +version = "0.116.5" dependencies = [ "ahash", "anyhow", @@ -2888,7 +2888,7 @@ dependencies = [ [[package]] name = "swc_ecma_ast" -version = "0.65.2" +version = "0.65.3" dependencies = [ "arbitrary", "is-macro", @@ -3365,7 +3365,7 @@ dependencies = [ [[package]] name = "swc_ecmascript" -version = "0.110.4" +version = "0.110.5" dependencies = [ "swc_ecma_ast", "swc_ecma_codegen", diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index a7a10bb27d3..57335ee02f2 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.4" +version = "0.116.5" [lib] name = "swc" @@ -47,7 +47,7 @@ serde_json = "1" sourcemap = "6" swc_atoms = {version = "0.2", path = "../swc_atoms"} swc_common = {version = "0.17.0", path = "../swc_common", features = ["sourcemap", "concurrent"]} -swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast"} +swc_ecma_ast = {version = "0.65.3", path = "../swc_ecma_ast"} swc_ecma_codegen = {version = "0.89.0", path = "../swc_ecma_codegen"} swc_ecma_ext_transforms = {version = "0.50.0", path = "../swc_ecma_ext_transforms"} swc_ecma_lints = {version = "0.9.0", path = "../swc_ecma_lints"} @@ -68,7 +68,7 @@ swc_ecma_transforms_compat = {version = "0.68.1", path = "../swc_ecma_transforms 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.0", path = "../swc_ecma_visit"} -swc_ecmascript = {version = "0.110.4", path = "../swc_ecmascript"} +swc_ecmascript = {version = "0.110.5", 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_ast/Cargo.toml b/crates/swc_ecma_ast/Cargo.toml index 0ffc51dca3d..28b56806b16 100644 --- a/crates/swc_ecma_ast/Cargo.toml +++ b/crates/swc_ecma_ast/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_ast" repository = "https://github.com/swc-project/swc.git" -version = "0.65.2" +version = "0.65.3" [package.metadata.docs.rs] all-features = true diff --git a/crates/swc_ecmascript/Cargo.toml b/crates/swc_ecmascript/Cargo.toml index 9843eadd4d9..529106ac07d 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.4" +version = "0.110.5" [package.metadata.docs.rs] all-features = true @@ -33,7 +33,7 @@ react = ["swc_ecma_transforms/react"] typescript = ["typescript-parser", "swc_ecma_transforms/typescript"] [dependencies] -swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast"} +swc_ecma_ast = {version = "0.65.3", path = "../swc_ecma_ast"} swc_ecma_codegen = {version = "0.89.0", path = "../swc_ecma_codegen", optional = true} swc_ecma_dep_graph = {version = "0.58.0", path = "../swc_ecma_dep_graph", optional = true} swc_ecma_minifier = {version = "0.70.2", path = "../swc_ecma_minifier", optional = true}