From 793c423a2438bff1db05162bc552bcde6d05a67c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Donny/=EA=B0=95=EB=8F=99=EC=9C=A4?= Date: Sun, 10 Jul 2022 00:57:16 +0900 Subject: [PATCH] chore: Publish crates --- Cargo.lock | 14 +++++++------- crates/swc/Cargo.toml | 6 +++--- crates/swc_cli/Cargo.toml | 6 +++--- crates/swc_estree_compat/Cargo.toml | 4 ++-- crates/swc_plugin/Cargo.toml | 6 +++--- crates/swc_plugin_macro/Cargo.toml | 2 +- crates/swc_plugin_proxy/Cargo.toml | 2 +- crates/swc_plugin_runner/Cargo.toml | 4 ++-- 8 files changed, 22 insertions(+), 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 04450b53989..9215adf772d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2935,7 +2935,7 @@ dependencies = [ [[package]] name = "swc" -version = "0.204.0" +version = "0.205.0" dependencies = [ "ahash", "ansi_term", @@ -3063,7 +3063,7 @@ dependencies = [ [[package]] name = "swc_cli" -version = "0.78.0" +version = "0.79.0" dependencies = [ "anyhow", "atty", @@ -3872,7 +3872,7 @@ dependencies = [ [[package]] name = "swc_estree_compat" -version = "0.125.0" +version = "0.126.0" dependencies = [ "ahash", "anyhow", @@ -4101,7 +4101,7 @@ dependencies = [ [[package]] name = "swc_plugin" -version = "0.76.0" +version = "0.77.0" dependencies = [ "swc_atoms", "swc_common", @@ -4113,7 +4113,7 @@ dependencies = [ [[package]] name = "swc_plugin_macro" -version = "0.4.1" +version = "0.5.0" dependencies = [ "proc-macro2", "quote", @@ -4122,7 +4122,7 @@ dependencies = [ [[package]] name = "swc_plugin_proxy" -version = "0.10.0" +version = "0.11.0" dependencies = [ "better_scoped_tls", "bytecheck", @@ -4133,7 +4133,7 @@ dependencies = [ [[package]] name = "swc_plugin_runner" -version = "0.63.0" +version = "0.64.0" dependencies = [ "anyhow", "criterion", diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index c6e90c25bcc..48c6c90392f 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.204.0" +version = "0.205.0" [lib] bench = false @@ -76,8 +76,8 @@ swc_ecma_visit = {version = "0.70.0", path = "../swc_ecma_visit"} swc_ecmascript = {version = "0.179.0", path = "../swc_ecmascript"} swc_error_reporters = {version = "0.7.0", path = "../swc_error_reporters"} swc_node_comments = {version = "0.10.0", path = "../swc_node_comments"} -swc_plugin_proxy = {version = "0.10.0", path = "../swc_plugin_proxy", optional = true} -swc_plugin_runner = {version = "0.63.0", path = "../swc_plugin_runner", optional = true, default-features = false} +swc_plugin_proxy = {version = "0.11.0", path = "../swc_plugin_proxy", optional = true} +swc_plugin_runner = {version = "0.64.0", path = "../swc_plugin_runner", optional = true, default-features = false} swc_timer = {version = "0.11.0", path = "../swc_timer"} swc_visit = {version = "0.4.0", path = "../swc_visit"} tracing = "0.1.32" diff --git a/crates/swc_cli/Cargo.toml b/crates/swc_cli/Cargo.toml index 59489eaa2cb..1b5c424d3be 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.78.0" +version = "0.79.0" [[bin]] bench = false @@ -31,9 +31,9 @@ rayon = "1" relative-path = "1.6.1" serde = { version = "1", features = ["derive"] } serde_json = { version = "1", features = ["unbounded_depth"] } -swc = { version = "0.204.0", path = "../swc" } +swc = { version = "0.205.0", path = "../swc" } swc_common = { version = "0.23.0", path = "../swc_common" } -swc_plugin_runner = { version = "0.63.0", path = "../swc_plugin_runner", default-features = false, optional = true } +swc_plugin_runner = { version = "0.64.0", path = "../swc_plugin_runner", default-features = false, optional = true } swc_trace_macro = { version = "0.1.0", path = "../swc_trace_macro" } tracing = "0.1.32" tracing-chrome = "0.5.0" diff --git a/crates/swc_estree_compat/Cargo.toml b/crates/swc_estree_compat/Cargo.toml index 43ad9cdd468..a28f06533de 100644 --- a/crates/swc_estree_compat/Cargo.toml +++ b/crates/swc_estree_compat/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_estree_compat" repository = "https://github.com/swc-project/swc.git" -version = "0.125.0" +version = "0.126.0" [package.metadata.docs.rs] all-features = true @@ -38,7 +38,7 @@ swc_node_comments = {version = "0.10.0", path = "../swc_node_comments/"} [dev-dependencies] criterion = "0.3" pretty_assertions = "1.1" -swc = {version = "0.204.0", path = "../swc"} +swc = {version = "0.205.0", path = "../swc"} swc_ecma_ast = {version = "0.84.0", path = "../swc_ecma_ast"} swc_ecma_parser = {version = "0.111.0", path = "../swc_ecma_parser"} swc_ecma_transforms = {version = "0.174.0", path = "../swc_ecma_transforms/"} diff --git a/crates/swc_plugin/Cargo.toml b/crates/swc_plugin/Cargo.toml index 29850c38ce4..e6fb561e38d 100644 --- a/crates/swc_plugin/Cargo.toml +++ b/crates/swc_plugin/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0" name = "swc_plugin" repository = "https://github.com/swc-project/swc.git" -version = "0.76.0" +version = "0.77.0" [package.metadata.docs.rs] all-features = true @@ -25,7 +25,7 @@ swc_common = { version = "0.23.0", path = "../swc_common", features = [ ] } swc_ecma_quote = { version = "0.25.0", path = "../swc_ecma_quote", optional = true } swc_ecmascript = { version = "0.179.0", path = "../swc_ecmascript", features = ["utils", "visit", "rkyv-impl"] } -swc_plugin_proxy = { version = "0.10.0", path = "../swc_plugin_proxy", features = [ +swc_plugin_proxy = { version = "0.11.0", path = "../swc_plugin_proxy", features = [ "plugin-mode", ] } -swc_plugin_macro = { version = "0.4.1", path = "../swc_plugin_macro" } +swc_plugin_macro = { version = "0.5.0", path = "../swc_plugin_macro" } diff --git a/crates/swc_plugin_macro/Cargo.toml b/crates/swc_plugin_macro/Cargo.toml index dc62f540882..b838bf4535d 100644 --- a/crates/swc_plugin_macro/Cargo.toml +++ b/crates/swc_plugin_macro/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0" name = "swc_plugin_macro" repository = "https://github.com/swc-project/swc.git" -version = "0.4.1" +version = "0.5.0" [lib] bench = false diff --git a/crates/swc_plugin_proxy/Cargo.toml b/crates/swc_plugin_proxy/Cargo.toml index 82390ac1a37..157583e5adb 100644 --- a/crates/swc_plugin_proxy/Cargo.toml +++ b/crates/swc_plugin_proxy/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_plugin_proxy" repository = "https://github.com/swc-project/swc.git" -version = "0.10.0" +version = "0.11.0" [lib] bench = false diff --git a/crates/swc_plugin_runner/Cargo.toml b/crates/swc_plugin_runner/Cargo.toml index ab565630b29..c815556a537 100644 --- a/crates/swc_plugin_runner/Cargo.toml +++ b/crates/swc_plugin_runner/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_plugin_runner" repository = "https://github.com/swc-project/swc.git" -version = "0.63.0" +version = "0.64.0" [lib] bench = false @@ -33,7 +33,7 @@ swc_common = { version = "0.23.0", path = "../swc_common", features = [ swc_ecma_ast = { version = "0.84.0", path = "../swc_ecma_ast", features = [ "rkyv-impl", ] } -swc_plugin_proxy = { version = "0.10.0", path = "../swc_plugin_proxy", features = [ +swc_plugin_proxy = { version = "0.11.0", path = "../swc_plugin_proxy", features = [ "plugin-rt", ] } tracing = "0.1.32"