From 167359e08957f15ca180d28a0e407d53f288313a Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Mon, 17 Oct 2022 09:38:57 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ Cargo.lock | 12 ++++++------ crates/binding_macros/Cargo.toml | 4 ++-- crates/swc/Cargo.toml | 4 ++-- crates/swc_core/Cargo.toml | 10 +++++----- crates/swc_estree_compat/Cargo.toml | 4 ++-- crates/swc_node_bundler/Cargo.toml | 4 ++-- crates/swc_plugin_runner/Cargo.toml | 2 +- 8 files changed, 23 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 82bff7317c6..2b6f316d23f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,6 +32,9 @@ - **(es/plugin)** Disable SIMD (#6163) ([899021e](https://github.com/swc-project/swc/commit/899021e440c40b954825d1c0996fd1c14b1af457)) +- **(es/plugin)** Fix plugin on non `x86_64` (#6178) ([cb8f350](https://github.com/swc-project/swc/commit/cb8f3500b2eac333eb126ab3844271d344e58a35)) + + - **(es/quote)** Fix handling of template literals (#6157) ([6502979](https://github.com/swc-project/swc/commit/65029793a6915c11156dcc5c0265d3e2df41e2b4)) diff --git a/Cargo.lock b/Cargo.lock index d9097ac2b2a..84e68a44e41 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -168,7 +168,7 @@ dependencies = [ [[package]] name = "binding_macros" -version = "0.20.31" +version = "0.20.32" dependencies = [ "anyhow", "console_error_panic_hook", @@ -2982,7 +2982,7 @@ dependencies = [ [[package]] name = "swc" -version = "0.232.31" +version = "0.232.32" dependencies = [ "ahash", "ansi_term", @@ -3168,7 +3168,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.38.18" +version = "0.38.19" dependencies = [ "binding_macros", "once_cell", @@ -3997,7 +3997,7 @@ dependencies = [ [[package]] name = "swc_estree_compat" -version = "0.154.31" +version = "0.154.32" dependencies = [ "ahash", "anyhow", @@ -4183,7 +4183,7 @@ dependencies = [ [[package]] name = "swc_node_bundler" -version = "0.18.31" +version = "0.18.32" dependencies = [ "anyhow", "dashmap", @@ -4264,7 +4264,7 @@ dependencies = [ [[package]] name = "swc_plugin_runner" -version = "0.77.14" +version = "0.77.15" dependencies = [ "anyhow", "criterion", diff --git a/crates/binding_macros/Cargo.toml b/crates/binding_macros/Cargo.toml index f19e006904f..b569469ed7d 100644 --- a/crates/binding_macros/Cargo.toml +++ b/crates/binding_macros/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "Apache-2.0" name = "binding_macros" repository = "https://github.com/swc-project/swc.git" -version = "0.20.31" +version = "0.20.32" [lib] bench = false @@ -30,7 +30,7 @@ binding_wasm = [ [dependencies] # Common deps for the SWC imports -swc = { optional = true, version = "0.232.31", path = "../swc" } +swc = { optional = true, version = "0.232.32", path = "../swc" } swc_common = { optional = true, version = "0.29.8", path = "../swc_common" } swc_ecma_ast = { optional = true, version = "0.94.11", path = "../swc_ecma_ast" } swc_ecma_transforms = { optional = true, version = "0.198.16", path = "../swc_ecma_transforms" } diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 4728458aa15..b387313abca 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.232.31" +version = "0.232.32" [lib] bench = false @@ -94,7 +94,7 @@ swc_ecma_visit = { version = "0.80.11", path = "../swc_ecma_visit" } swc_error_reporters = { version = "0.13.8", path = "../swc_error_reporters" } swc_node_comments = { version = "0.16.8", path = "../swc_node_comments" } swc_plugin_proxy = { version = "0.22.11", path = "../swc_plugin_proxy", optional = true } -swc_plugin_runner = { version = "0.77.14", path = "../swc_plugin_runner", optional = true, default-features = false } +swc_plugin_runner = { version = "0.77.15", path = "../swc_plugin_runner", optional = true, default-features = false } swc_timer = { version = "0.17.8", path = "../swc_timer" } swc_visit = { version = "0.5.2", path = "../swc_visit" } tracing = "0.1.32" diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index ac7fcb42637..e906435c3a1 100644 --- a/crates/swc_core/Cargo.toml +++ b/crates/swc_core/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_core" repository = "https://github.com/swc-project/swc.git" -version = "0.38.18" +version = "0.38.19" [package.metadata.docs.rs] features = [ "common_perf", @@ -317,8 +317,8 @@ wasmer = { optional = true, version = "2.3.0", default-features = false } wasmer-wasi = { optional = true, version = "2.3.0", default-features = false } # swc_* dependencies -binding_macros = { optional = true, version = "0.20.31", path = "../binding_macros" } -swc = { optional = true, version = "0.232.31", path = "../swc" } +binding_macros = { optional = true, version = "0.20.32", path = "../binding_macros" } +swc = { optional = true, version = "0.232.32", path = "../swc" } swc_atoms = { optional = true, version = "0.4.21", path = "../swc_atoms" } swc_bundler = { optional = true, version = "0.192.30", path = "../swc_bundler" } swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" } @@ -347,7 +347,7 @@ swc_ecma_transforms_typescript = { optional = true, version = "0.159.14", path swc_ecma_utils = { optional = true, version = "0.105.18", path = "../swc_ecma_utils" } swc_ecma_visit = { optional = true, version = "0.80.11", path = "../swc_ecma_visit" } swc_node_base = { optional = true, version = "0.5.5", path = "../swc_node_base" } -swc_node_bundler = { optional = true, version = "0.18.31", path = "../swc_node_bundler" } +swc_node_bundler = { optional = true, version = "0.18.32", path = "../swc_node_bundler" } swc_nodejs_common = { optional = true, version = "0.0.1", path = "../swc_nodejs_common" } swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" } swc_plugin_macro = { optional = true, version = "0.9.8", path = "../swc_plugin_macro" } @@ -356,7 +356,7 @@ swc_trace_macro = { optional = true, version = "0.1.2", path = testing = { optional = true, version = "0.31.8", path = "../testing" } # TODO: eventually swc_plugin_runner needs to remove default features swc_css_compat = { version = "0.7.2", path = "../swc_css_compat", optional = true } -swc_plugin_runner = { optional = true, version = "0.77.14", path = "../swc_plugin_runner", default-features = false } +swc_plugin_runner = { optional = true, version = "0.77.15", path = "../swc_plugin_runner", default-features = false } [build-dependencies] vergen = { version = "7.3.2", default-features = false, features = ["cargo"] } diff --git a/crates/swc_estree_compat/Cargo.toml b/crates/swc_estree_compat/Cargo.toml index 206fe2897a2..9f5c98910fb 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.154.31" +version = "0.154.32" [package.metadata.docs.rs] all-features = true @@ -38,7 +38,7 @@ swc_node_comments = { version = "0.16.8", path = "../swc_node_comments/" } [dev-dependencies] criterion = "0.3" pretty_assertions = "1.1" -swc = { version = "0.232.31", path = "../swc" } +swc = { version = "0.232.32", path = "../swc" } swc_ecma_ast = { version = "0.94.11", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "0.122.13", path = "../swc_ecma_parser" } swc_ecma_transforms = { version = "0.198.16", path = "../swc_ecma_transforms/" } diff --git a/crates/swc_node_bundler/Cargo.toml b/crates/swc_node_bundler/Cargo.toml index 24ccaf050fc..de8f10ef86c 100644 --- a/crates/swc_node_bundler/Cargo.toml +++ b/crates/swc_node_bundler/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_node_bundler" repository = "https://github.com/swc-project/swc.git" -version = "0.18.31" +version = "0.18.32" [lib] bench = false @@ -26,7 +26,7 @@ regex = "1" serde = { version = "1", features = ["derive"] } serde_json = "1" string_enum = { version = "0.3.2", path = "../string_enum" } -swc = { version = "0.232.31", path = "../swc" } +swc = { version = "0.232.32", path = "../swc" } swc_atoms = { version = "0.4.21", path = "../swc_atoms" } swc_bundler = { version = "0.192.30", path = "../swc_bundler", features = [ "concurrent", diff --git a/crates/swc_plugin_runner/Cargo.toml b/crates/swc_plugin_runner/Cargo.toml index db1b4f4e97f..c7e81d8e648 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.77.14" +version = "0.77.15" [lib] bench = false