From c9dfedf5ecd29dedaea7886e54b320b83ce9a4d0 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Wed, 17 Jan 2024 09:01:13 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 11 +++-------- Cargo.lock | 6 +++--- crates/swc_cli_impl/Cargo.toml | 4 ++-- crates/swc_core/Cargo.toml | 4 ++-- crates/swc_plugin_macro/Cargo.toml | 2 +- 5 files changed, 11 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a8df88fde94..24999d897ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,9 @@ - **(es/systemjs)** Handle top level this ([#8506](https://github.com/swc-project/swc/issues/8506)) ([0f94c8c](https://github.com/swc-project/swc/commit/0f94c8cf051f7a7526f6a3e7742fc079146e0af2)) + +- **(plugin)** Set `swc_common::errors::HANDLER` while invoking plugins ([#8511](https://github.com/swc-project/swc/issues/8511)) ([ba753f1](https://github.com/swc-project/swc/commit/ba753f12885c4c3062afa5782dc7f6652981a659)) + ## [1.3.103] - 2024-01-15 ### Bug Fixes @@ -1500,12 +1503,4 @@ - **(es/ast)** Remove unused fields ([#7518](https://github.com/swc-project/swc/issues/7518)) ([3958f17](https://github.com/swc-project/swc/commit/3958f1792c4598e965f36a11c567c95f69984a9f)) -## [1.3.62] - 2023-06-03 - -### Performance - - - -- **(bindings)** Enable `share-generics` to reduce binary size ([#7482](https://github.com/swc-project/swc/issues/7482)) ([d623db4](https://github.com/swc-project/swc/commit/d623db48dedf08f32bf7a2afbf71cd1aed27d30a)) - diff --git a/Cargo.lock b/Cargo.lock index ae8080719e5..7a7cb07795b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3909,7 +3909,7 @@ dependencies = [ [[package]] name = "swc_cli_impl" -version = "0.5.23" +version = "0.5.24" dependencies = [ "anyhow", "assert_cmd", @@ -4010,7 +4010,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.87.24" +version = "0.87.25" dependencies = [ "anyhow", "binding_macros", @@ -5278,7 +5278,7 @@ dependencies = [ [[package]] name = "swc_plugin_macro" -version = "0.9.15" +version = "0.9.16" dependencies = [ "proc-macro2", "quote", diff --git a/crates/swc_cli_impl/Cargo.toml b/crates/swc_cli_impl/Cargo.toml index 16bc4e5b795..b7dbb054ae1 100644 --- a/crates/swc_cli_impl/Cargo.toml +++ b/crates/swc_cli_impl/Cargo.toml @@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_cli_impl" repository = "https://github.com/swc-project/swc.git" -version = "0.5.23" +version = "0.5.24" [[bin]] name = "swc" @@ -40,7 +40,7 @@ tracing-futures = "0.2.5" tracing-subscriber = { version = "0.3.9", features = ["env-filter"] } walkdir = "2" -swc_core = { version = "0.87.24", features = [ +swc_core = { version = "0.87.25", features = [ "trace_macro", "common_concurrent", "base_concurrent", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index e99d42996a3..d01ade083c5 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.87.24" +version = "0.87.25" [package.metadata.docs.rs] features = [ "allocator_node", @@ -361,7 +361,7 @@ swc_malloc = { optional = true, version = "0.5.10", path = swc_node_bundler = { optional = true, version = "0.59.22", path = "../swc_node_bundler" } swc_nodejs_common = { optional = true, version = "0.0.8", path = "../swc_nodejs_common" } swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" } -swc_plugin_macro = { optional = true, version = "0.9.15", path = "../swc_plugin_macro" } +swc_plugin_macro = { optional = true, version = "0.9.16", path = "../swc_plugin_macro" } swc_plugin_proxy = { optional = true, version = "0.39.17", path = "../swc_plugin_proxy" } swc_trace_macro = { optional = true, version = "0.1.3", path = "../swc_trace_macro" } testing = { optional = true, version = "0.35.14", path = "../testing" } diff --git a/crates/swc_plugin_macro/Cargo.toml b/crates/swc_plugin_macro/Cargo.toml index 530e2de30de..d6526a1e867 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.9.15" +version = "0.9.16" [lib] bench = false