From dc84153ab53b96361e0037b1eac42ca09338fc28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Donny/=EA=B0=95=EB=8F=99=EC=9C=A4?= Date: Wed, 20 Apr 2022 23:15:56 +0900 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ Cargo.lock | 4 ++-- crates/swc_plugin/Cargo.toml | 4 ++-- crates/swc_plugin_macro/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e0e39b7bee1..cd1f20d36bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,9 @@ - **(plugin)** Align deps to fix build (#4377) ([8419b60](https://github.com/swc-project/swc/commit/8419b604300695e57cb6b1191e9daf638c65c828)) +### Miscellaneous Tasks +- **general**: Fix wasm publish script ([234e380](https://github.com/swc-project/swc/commit/234e38058071f1d91e899ba7d16f37f3e3a69334)) + ## [1.2.170] - 2022-04-20 ### Performance diff --git a/Cargo.lock b/Cargo.lock index e90976495d4..d74e38eb456 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3879,7 +3879,7 @@ dependencies = [ [[package]] name = "swc_plugin" -version = "0.48.1" +version = "0.48.2" dependencies = [ "swc_atoms", "swc_common", @@ -3893,7 +3893,7 @@ dependencies = [ [[package]] name = "swc_plugin_macro" -version = "0.4.0" +version = "0.4.1" dependencies = [ "proc-macro2", "quote", diff --git a/crates/swc_plugin/Cargo.toml b/crates/swc_plugin/Cargo.toml index 86181a9661b..df917e9f89a 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.48.1" +version = "0.48.2" [package.metadata.docs.rs] all-features = true @@ -32,4 +32,4 @@ swc_ecma_utils = { version = "0.81.0", path = "../swc_ecma_utils" } swc_plugin_proxy = { version = "0.2.1", path = "../swc_plugin_proxy", features = [ "plugin-mode", ] } -swc_plugin_macro = { version = "0.4.0", path = "../swc_plugin_macro" } +swc_plugin_macro = { version = "0.4.1", path = "../swc_plugin_macro" } diff --git a/crates/swc_plugin_macro/Cargo.toml b/crates/swc_plugin_macro/Cargo.toml index 2fb5680b317..dc62f540882 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.0" +version = "0.4.1" [lib] bench = false