From b75a0387068fa1da8e6098ff2975716c9843cef1 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Tue, 1 Mar 2022 14:22:55 +0900 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ Cargo.lock | 12 ++++++------ crates/swc/Cargo.toml | 2 +- crates/swc_cli/Cargo.toml | 4 ++-- crates/swc_ecma_transforms/Cargo.toml | 4 ++-- crates/swc_ecma_transforms_module/Cargo.toml | 2 +- crates/swc_estree_compat/Cargo.toml | 4 ++-- crates/swc_webpack_ast/Cargo.toml | 4 ++-- 8 files changed, 19 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e70dfded85c..814ef823ae5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -50,6 +50,9 @@ - **(es/module)** Workaround stack overflow bug of JavaScriptCore related to too many exports (#3763) ([ad0a853](https://github.com/swc-project/swc/commit/ad0a8539e058fda49e40cc8fab167e2602576d48)) +- **(es/modules)** Support system js (#3659) ([557a520](https://github.com/swc-project/swc/commit/557a520a6d6814f79625ca0227c47fa2d42a806e)) + + - **(es/quote)** Implement quasi quoter partially (#3155) ([fe0ddcc](https://github.com/swc-project/swc/commit/fe0ddcc54b0f8343a3a3d227bde8b38fa47ebd80)) diff --git a/Cargo.lock b/Cargo.lock index f2d8d93c302..ccb52fb02b1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2667,7 +2667,7 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" [[package]] name = "swc" -version = "0.138.0" +version = "0.139.0" dependencies = [ "ahash", "anyhow", @@ -2765,7 +2765,7 @@ dependencies = [ [[package]] name = "swc_cli" -version = "0.12.0" +version = "0.13.0" dependencies = [ "anyhow", "atty", @@ -3156,7 +3156,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms" -version = "0.124.0" +version = "0.124.1" dependencies = [ "pretty_assertions", "sourcemap", @@ -3256,7 +3256,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_module" -version = "0.84.1" +version = "0.84.2" dependencies = [ "Inflector", "ahash", @@ -3462,7 +3462,7 @@ dependencies = [ [[package]] name = "swc_estree_compat" -version = "0.57.0" +version = "0.58.0" dependencies = [ "ahash", "anyhow", @@ -3662,7 +3662,7 @@ dependencies = [ [[package]] name = "swc_webpack_ast" -version = "0.55.0" +version = "0.56.0" dependencies = [ "anyhow", "rayon", diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 2bd3d0e993b..bfc68dcdfd5 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.138.0" +version = "0.139.0" [lib] name = "swc" diff --git a/crates/swc_cli/Cargo.toml b/crates/swc_cli/Cargo.toml index 75f79c33bf3..35bfa892315 100644 --- a/crates/swc_cli/Cargo.toml +++ b/crates/swc_cli/Cargo.toml @@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_cli" repository = "https://github.com/swc-project/swc.git" -version = "0.12.0" +version = "0.13.0" [[bin]] name = "swc" @@ -17,7 +17,7 @@ anyhow = "1.0.53" clap = { version = "3.1.0", features = ["derive", "wrap_help"] } walkdir = "2" rayon = "1" -swc = { version = "0.138.0", path = "../swc" } +swc = { version = "0.139.0", path = "../swc" } swc_common = { version = "0.17.5", path = "../swc_common" } relative-path = "1.6.1" serde = { version = "1", features = ["derive"] } diff --git a/crates/swc_ecma_transforms/Cargo.toml b/crates/swc_ecma_transforms/Cargo.toml index 34eed42e4e6..5dab5ea7aa6 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.124.0" +version = "0.124.1" [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.68.0", path = "../swc_ecma_ast"} swc_ecma_transforms_base = {version = "0.63.0", path = "../swc_ecma_transforms_base"} swc_ecma_transforms_compat = {version = "0.75.0", path = "../swc_ecma_transforms_compat", optional = true} -swc_ecma_transforms_module = {version = "0.84.0", path = "../swc_ecma_transforms_module", optional = true} +swc_ecma_transforms_module = {version = "0.84.2", path = "../swc_ecma_transforms_module", optional = true} swc_ecma_transforms_optimization = {version = "0.94.0", path = "../swc_ecma_transforms_optimization", optional = true} swc_ecma_transforms_proposal = {version = "0.82.0", path = "../swc_ecma_transforms_proposal", optional = true} swc_ecma_transforms_react = {version = "0.86.0", path = "../swc_ecma_transforms_react", optional = true} diff --git a/crates/swc_ecma_transforms_module/Cargo.toml b/crates/swc_ecma_transforms_module/Cargo.toml index 54bdd30d988..00d70a97558 100644 --- a/crates/swc_ecma_transforms_module/Cargo.toml +++ b/crates/swc_ecma_transforms_module/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_transforms_module" repository = "https://github.com/swc-project/swc.git" -version = "0.84.1" +version = "0.84.2" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] diff --git a/crates/swc_estree_compat/Cargo.toml b/crates/swc_estree_compat/Cargo.toml index 8066e72abb8..a93c8b63351 100644 --- a/crates/swc_estree_compat/Cargo.toml +++ b/crates/swc_estree_compat/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_estree_compat" repository = "https://github.com/swc-project/swc.git" -version = "0.57.0" +version = "0.58.0" [package.metadata.docs.rs] all-features = true @@ -29,7 +29,7 @@ swc_node_comments = {version = "0.4.0", path = "../swc_node_comments/"} [dev-dependencies] pretty_assertions = "0.7.2" -swc = {version = "0.138.0", path = "../swc"} +swc = {version = "0.139.0", path = "../swc"} swc_ecma_ast = {version = "0.68.0", path = "../swc_ecma_ast"} swc_ecma_parser = {version = "0.91.0", path = "../swc_ecma_parser"} swc_ecma_transforms = {version = "0.124.0", path = "../swc_ecma_transforms/"} diff --git a/crates/swc_webpack_ast/Cargo.toml b/crates/swc_webpack_ast/Cargo.toml index ce024c90062..0d5adc37a61 100644 --- a/crates/swc_webpack_ast/Cargo.toml +++ b/crates/swc_webpack_ast/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_webpack_ast" repository = "https://github.com/swc-project/swc.git" -version = "0.55.0" +version = "0.56.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -22,7 +22,7 @@ swc_ecma_transforms_base = {version = "0.63.0", path = "../swc_ecma_transforms_b swc_ecma_utils = {version = "0.69.0", path = "../swc_ecma_utils"} swc_ecma_visit = {version = "0.54.0", path = "../swc_ecma_visit"} swc_estree_ast = {version = "0.7.0", path = "../swc_estree_ast"} -swc_estree_compat = {version = "0.57.0", path = "../swc_estree_compat"} +swc_estree_compat = {version = "0.58.0", path = "../swc_estree_compat"} swc_timer = {version = "0.4.0", path = "../swc_timer"} tracing = "0.1.31"