From 1606d08927772c932be6562b71b6581a07d31943 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EB=8F=99=EC=9C=A4=20=28Donny=29?= Date: Thu, 7 Nov 2024 02:12:40 +0900 Subject: [PATCH] chore: Publish crates with `swc_core` `v5.0.2` --- .changeset/dull-donuts-learn.md | 6 ------ CHANGELOG.md | 11 ++++++++--- Cargo.lock | 4 ++-- crates/binding_macros/Cargo.toml | 2 +- crates/swc/Cargo.toml | 2 +- crates/swc_cli_impl/Cargo.toml | 2 +- crates/swc_core/Cargo.toml | 4 ++-- crates/swc_estree_compat/Cargo.toml | 2 +- crates/swc_node_bundler/Cargo.toml | 2 +- 9 files changed, 17 insertions(+), 18 deletions(-) delete mode 100644 .changeset/dull-donuts-learn.md diff --git a/.changeset/dull-donuts-learn.md b/.changeset/dull-donuts-learn.md deleted file mode 100644 index 4663df141bb0..000000000000 --- a/.changeset/dull-donuts-learn.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -swc: patch -swc_core: patch ---- - -fix(swc): fix manual-tokio-runtmie -> manual-tokio-runtime typo diff --git a/CHANGELOG.md b/CHANGELOG.md index d00f6996a448..88c300234373 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,12 @@ # Changelog +## [unreleased] + +### Bug Fixes + + + +- **(es)** Fix typo in feature name ([#9721](https://github.com/swc-project/swc/issues/9721)) ([aff9de5](https://github.com/swc-project/swc/commit/aff9de5ea37d5d34d587b96b8044d08644936524)) + ## [1.9.1] - 2024-11-06 ### Bug Fixes @@ -1428,9 +1436,6 @@ -- **(es/minifier)** Preserve unused special properties ([#9005](https://github.com/swc-project/swc/issues/9005)) ([e764ff6](https://github.com/swc-project/swc/commit/e764ff6f64d4e528a2af3e3ad7859ab3f8a2fe48)) - - - **(es/minifier)** Fix comparison of `-0.0` ([#9012](https://github.com/swc-project/swc/issues/9012)) ([8a29577](https://github.com/swc-project/swc/commit/8a29577cc5bd3842d3bccfdbbffa45e4c9944d7f)) diff --git a/Cargo.lock b/Cargo.lock index ad4c2e06672c..dbbc89df83e4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3850,7 +3850,7 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" [[package]] name = "swc" -version = "5.0.0" +version = "5.0.1" dependencies = [ "ansi_term", "anyhow", @@ -4115,7 +4115,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "5.0.1" +version = "5.0.2" dependencies = [ "anyhow", "binding_macros", diff --git a/crates/binding_macros/Cargo.toml b/crates/binding_macros/Cargo.toml index 40c3a6c991a9..aa4e120d9356 100644 --- a/crates/binding_macros/Cargo.toml +++ b/crates/binding_macros/Cargo.toml @@ -33,7 +33,7 @@ binding_wasm = [ [dependencies] # Common deps for the SWC imports -swc = { optional = true, version = "5.0.0", path = "../swc" } +swc = { optional = true, version = "5.0.1", path = "../swc" } swc_common = { optional = true, version = "4.0.0", path = "../swc_common" } swc_ecma_ast = { optional = true, version = "4.0.1", path = "../swc_ecma_ast" } swc_ecma_transforms = { optional = true, version = "5.0.0", path = "../swc_ecma_transforms" } diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index af1e708501f1..39b95f5b68ae 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 = "5.0.0" +version = "5.0.1" [lib] bench = false diff --git a/crates/swc_cli_impl/Cargo.toml b/crates/swc_cli_impl/Cargo.toml index 9987fe32d338..20bc37d0ddc5 100644 --- a/crates/swc_cli_impl/Cargo.toml +++ b/crates/swc_cli_impl/Cargo.toml @@ -39,7 +39,7 @@ tracing-futures = { workspace = true } tracing-subscriber = { workspace = true, features = ["env-filter"] } walkdir = { workspace = true } -swc_core = { version = "5.0.1", features = [ +swc_core = { version = "5.0.2", features = [ "trace_macro", "common_concurrent", "base_concurrent", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 679baf11a66e..b0b68258cc43 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 = "5.0.1" +version = "5.0.2" [package.metadata.docs.rs] features = [ "allocator_node", @@ -339,7 +339,7 @@ once_cell = { workspace = true, optional = true } # swc_* dependencies binding_macros = { optional = true, version = "5.0.0", path = "../binding_macros" } -swc = { optional = true, version = "5.0.0", path = "../swc" } +swc = { optional = true, version = "5.0.1", path = "../swc" } swc_atoms = { optional = true, version = "2.0.0", path = "../swc_atoms" } swc_bundler = { optional = true, version = "5.0.0", path = "../swc_bundler" } swc_cached = { optional = true, version = "1.0.0", path = "../swc_cached" } diff --git a/crates/swc_estree_compat/Cargo.toml b/crates/swc_estree_compat/Cargo.toml index fb54ae59e2e8..ce7b1503f3d0 100644 --- a/crates/swc_estree_compat/Cargo.toml +++ b/crates/swc_estree_compat/Cargo.toml @@ -41,7 +41,7 @@ codspeed-criterion-compat = { workspace = true } criterion = { workspace = true } pretty_assertions = { workspace = true } -swc = { version = "5.0.0", path = "../swc" } +swc = { version = "5.0.1", path = "../swc" } swc_ecma_ast = { version = "4.0.1", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "5.0.0", path = "../swc_ecma_parser" } swc_ecma_transforms = { version = "5.0.0", path = "../swc_ecma_transforms/" } diff --git a/crates/swc_node_bundler/Cargo.toml b/crates/swc_node_bundler/Cargo.toml index d21cd0648e88..651a58591827 100644 --- a/crates/swc_node_bundler/Cargo.toml +++ b/crates/swc_node_bundler/Cargo.toml @@ -29,7 +29,7 @@ serde_json = { workspace = true } tracing = { workspace = true } string_enum = { version = "1.0.0", path = "../string_enum" } -swc = { version = "5.0.0", path = "../swc" } +swc = { version = "5.0.1", path = "../swc" } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } swc_bundler = { version = "5.0.0", path = "../swc_bundler", features = [ "concurrent",