From dd25ecfacec719e413f301d31b5762840f79c81a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EB=8F=99=EC=9C=A4=20=28Donny=29?= Date: Sat, 2 Nov 2024 10:11:26 +0900 Subject: [PATCH] chore: Publish crates with `swc_core` `v4.0.1` --- .changeset/swift-hairs-bow.md | 6 ------ CHANGELOG.md | 6 ++++++ Cargo.lock | 4 ++-- crates/swc_cli_impl/Cargo.toml | 2 +- crates/swc_core/Cargo.toml | 2 +- crates/swc_fast_ts_strip/Cargo.toml | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) delete mode 100644 .changeset/swift-hairs-bow.md diff --git a/.changeset/swift-hairs-bow.md b/.changeset/swift-hairs-bow.md deleted file mode 100644 index 4213e24b041..00000000000 --- a/.changeset/swift-hairs-bow.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -swc_fast_ts_strip: patch -swc_core: patch ---- - -fix(es/typescript): Handle multiline type parameters in async arrow functions diff --git a/CHANGELOG.md b/CHANGELOG.md index 493efc1ab5d..102f48d3430 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog ## [unreleased] +### Bug Fixes + + + +- **(es/typescript)** Handle multiline type parameters in async arrow functions ([#9704](https://github.com/swc-project/swc/issues/9704)) ([c5ed19c](https://github.com/swc-project/swc/commit/c5ed19c710fd32f5c23b2d85ff8f30cb09f58899)) + ### Features diff --git a/Cargo.lock b/Cargo.lock index 1c2a88f8b00..7a30d35dd22 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4115,7 +4115,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "4.0.0" +version = "4.0.1" dependencies = [ "anyhow", "binding_macros", @@ -5202,7 +5202,7 @@ dependencies = [ [[package]] name = "swc_fast_ts_strip" -version = "4.0.0" +version = "4.0.1" dependencies = [ "anyhow", "codspeed-criterion-compat", diff --git a/crates/swc_cli_impl/Cargo.toml b/crates/swc_cli_impl/Cargo.toml index c444afd6399..71ab0e07bef 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 = "4.0.0", features = [ +swc_core = { version = "4.0.1", features = [ "trace_macro", "common_concurrent", "base_concurrent", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 23ef286758a..4021c064100 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 = "4.0.0" +version = "4.0.1" [package.metadata.docs.rs] features = [ "allocator_node", diff --git a/crates/swc_fast_ts_strip/Cargo.toml b/crates/swc_fast_ts_strip/Cargo.toml index ba736823365..f1c2bd15adb 100644 --- a/crates/swc_fast_ts_strip/Cargo.toml +++ b/crates/swc_fast_ts_strip/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_fast_ts_strip" repository = { workspace = true } -version = "4.0.0" +version = "4.0.1" [dependencies]