From a514cad4f5a557b6c088687511336aa27f8025a7 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Mon, 19 Aug 2024 09:56:39 +0000 Subject: [PATCH] chore: Publish crates with `swc_core` `v0.101.3` --- .changeset/cool-sloths-love.md | 6 ------ .changeset/hip-buckets-share.md | 6 ------ .changeset/rare-plants-shout.md | 7 ------- .changeset/real-pears-change.md | 9 --------- Cargo.lock | 14 +++++++------- crates/swc_common/Cargo.toml | 2 +- crates/swc_compiler_base/Cargo.toml | 2 +- crates/swc_css_visit/Cargo.toml | 2 +- crates/swc_ecma_ast/Cargo.toml | 2 +- crates/swc_ecma_visit/Cargo.toml | 2 +- crates/swc_html_visit/Cargo.toml | 2 +- crates/swc_xml_visit/Cargo.toml | 2 +- 12 files changed, 14 insertions(+), 42 deletions(-) delete mode 100644 .changeset/cool-sloths-love.md delete mode 100644 .changeset/hip-buckets-share.md delete mode 100644 .changeset/rare-plants-shout.md delete mode 100644 .changeset/real-pears-change.md diff --git a/.changeset/cool-sloths-love.md b/.changeset/cool-sloths-love.md deleted file mode 100644 index cc644289ee85..000000000000 --- a/.changeset/cool-sloths-love.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -swc_compiler_base: patch -swc_core: patch ---- - -fix(es): Preserve more comments diff --git a/.changeset/hip-buckets-share.md b/.changeset/hip-buckets-share.md deleted file mode 100644 index 9059bfb9882d..000000000000 --- a/.changeset/hip-buckets-share.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -swc_common: patch -swc_core: patch ---- - -fix(common): Use `SourceMap::adjust_mappings` in correct order diff --git a/.changeset/rare-plants-shout.md b/.changeset/rare-plants-shout.md deleted file mode 100644 index ed84d512eb9e..000000000000 --- a/.changeset/rare-plants-shout.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -swc_core: patch -swc_ecma_ast: patch -swc_ecma_transforms_proposal: patch ---- - -feat(es/decorators): Groundwork for stage 3 decorator diff --git a/.changeset/real-pears-change.md b/.changeset/real-pears-change.md deleted file mode 100644 index 61462c7625f8..000000000000 --- a/.changeset/real-pears-change.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -swc_core: patch -swc_ecma_visit: patch -swc_css_visit: patch -swc_html_visit: patch -swc_xml_visit: patch ---- - -refactor(visit): Remove `VisitAll` diff --git a/Cargo.lock b/Cargo.lock index 62d013723f4b..4c2b96e54746 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3925,7 +3925,7 @@ dependencies = [ [[package]] name = "swc_common" -version = "0.37.3" +version = "0.37.4" dependencies = [ "ahash 0.8.11", "anyhow", @@ -3961,7 +3961,7 @@ dependencies = [ [[package]] name = "swc_compiler_base" -version = "0.18.0" +version = "0.18.1" dependencies = [ "anyhow", "base64", @@ -4241,7 +4241,7 @@ dependencies = [ [[package]] name = "swc_css_visit" -version = "0.143.4" +version = "0.143.5" dependencies = [ "serde", "swc_atoms", @@ -4252,7 +4252,7 @@ dependencies = [ [[package]] name = "swc_ecma_ast" -version = "0.118.1" +version = "0.118.2" dependencies = [ "arbitrary", "bitflags 2.5.0", @@ -4998,7 +4998,7 @@ dependencies = [ [[package]] name = "swc_ecma_visit" -version = "0.104.5" +version = "0.104.6" dependencies = [ "new_debug_unreachable", "num-bigint", @@ -5235,7 +5235,7 @@ dependencies = [ [[package]] name = "swc_html_visit" -version = "0.37.4" +version = "0.37.5" dependencies = [ "serde", "swc_atoms", @@ -5491,7 +5491,7 @@ dependencies = [ [[package]] name = "swc_xml_visit" -version = "0.16.4" +version = "0.16.5" dependencies = [ "serde", "swc_atoms", diff --git a/crates/swc_common/Cargo.toml b/crates/swc_common/Cargo.toml index 2330a39295a5..afd144fe0f0d 100644 --- a/crates/swc_common/Cargo.toml +++ b/crates/swc_common/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_common" repository = "https://github.com/swc-project/swc.git" -version = "0.37.3" +version = "0.37.4" [package.metadata.docs.rs] all-features = true diff --git a/crates/swc_compiler_base/Cargo.toml b/crates/swc_compiler_base/Cargo.toml index 84c9f0e99a69..581db048d2e5 100644 --- a/crates/swc_compiler_base/Cargo.toml +++ b/crates/swc_compiler_base/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_compiler_base" repository = "https://github.com/swc-project/swc.git" -version = "0.18.0" +version = "0.18.1" [features] node = ["napi", "napi-derive"] diff --git a/crates/swc_css_visit/Cargo.toml b/crates/swc_css_visit/Cargo.toml index 1a2920a4bd50..04b29787ddaa 100644 --- a/crates/swc_css_visit/Cargo.toml +++ b/crates/swc_css_visit/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_visit" repository = "https://github.com/swc-project/swc.git" -version = "0.143.4" +version = "0.143.5" [package.metadata.docs.rs] all-features = true diff --git a/crates/swc_ecma_ast/Cargo.toml b/crates/swc_ecma_ast/Cargo.toml index 39772e6eec49..dbeabc939465 100644 --- a/crates/swc_ecma_ast/Cargo.toml +++ b/crates/swc_ecma_ast/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_ast" repository = "https://github.com/swc-project/swc.git" -version = "0.118.1" +version = "0.118.2" [package.metadata.docs.rs] all-features = true diff --git a/crates/swc_ecma_visit/Cargo.toml b/crates/swc_ecma_visit/Cargo.toml index 48fb461d9efc..321de47646ca 100644 --- a/crates/swc_ecma_visit/Cargo.toml +++ b/crates/swc_ecma_visit/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_visit" repository = "https://github.com/swc-project/swc.git" -version = "0.104.5" +version = "0.104.6" [package.metadata.docs.rs] all-features = true diff --git a/crates/swc_html_visit/Cargo.toml b/crates/swc_html_visit/Cargo.toml index bd2bc39f9df6..8137b4391488 100644 --- a/crates/swc_html_visit/Cargo.toml +++ b/crates/swc_html_visit/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" license = { workspace = true } name = "swc_html_visit" repository = "https://github.com/swc-project/swc.git" -version = "0.37.4" +version = "0.37.5" [package.metadata.docs.rs] all-features = true diff --git a/crates/swc_xml_visit/Cargo.toml b/crates/swc_xml_visit/Cargo.toml index 7af6c5868a53..874b9d8047a9 100644 --- a/crates/swc_xml_visit/Cargo.toml +++ b/crates/swc_xml_visit/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" license = { workspace = true } name = "swc_xml_visit" repository = "https://github.com/swc-project/swc.git" -version = "0.16.4" +version = "0.16.5" [package.metadata.docs.rs] all-features = true