From 1393a7ce288d30eef761b4f4cddaea941fbffe95 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Tue, 29 Nov 2022 07:54:57 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ Cargo.lock | 10 +++++----- crates/swc_xml/Cargo.toml | 10 +++++----- crates/swc_xml_ast/Cargo.toml | 2 +- crates/swc_xml_codegen/Cargo.toml | 8 ++++---- crates/swc_xml_parser/Cargo.toml | 6 +++--- crates/swc_xml_visit/Cargo.toml | 4 ++-- 7 files changed, 23 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d068861075a..56956add1aba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,9 @@ - **(es/parser)** Make error message helpful (#6535) ([cb15721](https://github.com/swc-project/swc/commit/cb157215d26e5acfe74f7592da011ab9d5206207)) + +- **(xml/parser)** Parse cdata section (#6531) ([7f8c4e0](https://github.com/swc-project/swc/commit/7f8c4e04b246bef493a044f794ea1608f4550457)) + ### Performance diff --git a/Cargo.lock b/Cargo.lock index 30ee2f200ee2..89b7c6ee8413 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4333,7 +4333,7 @@ dependencies = [ [[package]] name = "swc_xml" -version = "0.5.4" +version = "0.6.0" dependencies = [ "swc_xml_ast", "swc_xml_codegen", @@ -4343,7 +4343,7 @@ dependencies = [ [[package]] name = "swc_xml_ast" -version = "0.4.17" +version = "0.5.0" dependencies = [ "is-macro", "serde", @@ -4354,7 +4354,7 @@ dependencies = [ [[package]] name = "swc_xml_codegen" -version = "0.5.4" +version = "0.6.0" dependencies = [ "auto_impl", "bitflags", @@ -4381,7 +4381,7 @@ dependencies = [ [[package]] name = "swc_xml_parser" -version = "0.5.4" +version = "0.6.0" dependencies = [ "serde", "serde_json", @@ -4394,7 +4394,7 @@ dependencies = [ [[package]] name = "swc_xml_visit" -version = "0.4.17" +version = "0.5.0" dependencies = [ "serde", "swc_atoms", diff --git a/crates/swc_xml/Cargo.toml b/crates/swc_xml/Cargo.toml index ca0a0fa59164..35209eacfc26 100644 --- a/crates/swc_xml/Cargo.toml +++ b/crates/swc_xml/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_xml" repository = "https://github.com/swc-project/swc.git" -version = "0.5.4" +version = "0.6.0" [package.metadata.docs.rs] all-features = true @@ -16,7 +16,7 @@ rustdoc-args = ["--cfg", "docsrs"] bench = false [dependencies] -swc_xml_ast = {version = "0.4.17", path = "../swc_xml_ast"} -swc_xml_codegen = {version = "0.5.4", path = "../swc_xml_codegen"} -swc_xml_parser = {version = "0.5.4", path = "../swc_xml_parser"} -swc_xml_visit = {version = "0.4.17", path = "../swc_xml_visit"} +swc_xml_ast = {version = "0.5.0", path = "../swc_xml_ast"} +swc_xml_codegen = {version = "0.6.0", path = "../swc_xml_codegen"} +swc_xml_parser = {version = "0.6.0", path = "../swc_xml_parser"} +swc_xml_visit = {version = "0.5.0", path = "../swc_xml_visit"} diff --git a/crates/swc_xml_ast/Cargo.toml b/crates/swc_xml_ast/Cargo.toml index 212334bc3732..86787dd99596 100644 --- a/crates/swc_xml_ast/Cargo.toml +++ b/crates/swc_xml_ast/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_xml_ast" repository = "https://github.com/swc-project/swc.git" -version = "0.4.17" +version = "0.5.0" [lib] bench = false diff --git a/crates/swc_xml_codegen/Cargo.toml b/crates/swc_xml_codegen/Cargo.toml index be5944ceee6e..24d7302d44c1 100644 --- a/crates/swc_xml_codegen/Cargo.toml +++ b/crates/swc_xml_codegen/Cargo.toml @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_xml_codegen" repository = "https://github.com/swc-project/swc.git" -version = "0.5.4" +version = "0.6.0" [lib] bench = false @@ -21,13 +21,13 @@ bitflags = "1.3.2" rustc-hash = "1.1.0" swc_atoms = { version = "0.4.25", path = "../swc_atoms" } swc_common = { version = "0.29.16", path = "../swc_common" } -swc_xml_ast = { version = "0.4.17", path = "../swc_xml_ast" } +swc_xml_ast = { version = "0.5.0", path = "../swc_xml_ast" } swc_xml_codegen_macros = { version = "0.1.0", path = "../swc_xml_codegen_macros" } [dev-dependencies] swc_common = { version = "0.29.16", path = "../swc_common", features = [ "sourcemap", ] } -swc_xml_parser = { version = "0.5.4", path = "../swc_xml_parser" } -swc_xml_visit = { version = "0.4.17", path = "../swc_xml_visit" } +swc_xml_parser = { version = "0.6.0", path = "../swc_xml_parser" } +swc_xml_visit = { version = "0.5.0", path = "../swc_xml_visit" } testing = { version = "0.31.17", path = "../testing" } diff --git a/crates/swc_xml_parser/Cargo.toml b/crates/swc_xml_parser/Cargo.toml index 85803ab6c39f..39c1fba64305 100644 --- a/crates/swc_xml_parser/Cargo.toml +++ b/crates/swc_xml_parser/Cargo.toml @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json"] license = "Apache-2.0" name = "swc_xml_parser" repository = "https://github.com/swc-project/swc.git" -version = "0.5.4" +version = "0.6.0" [lib] bench = false @@ -21,10 +21,10 @@ debug = [] [dependencies] swc_atoms = { version = "0.4.25", path = "../swc_atoms" } swc_common = { version = "0.29.16", path = "../swc_common" } -swc_xml_ast = { version = "0.4.17", path = "../swc_xml_ast" } +swc_xml_ast = { version = "0.5.0", path = "../swc_xml_ast" } [dev-dependencies] serde = "1.0.127" serde_json = "1.0.66" -swc_xml_visit = { version = "0.4.17", path = "../swc_xml_visit" } +swc_xml_visit = { version = "0.5.0", path = "../swc_xml_visit" } testing = { version = "0.31.17", path = "../testing" } diff --git a/crates/swc_xml_visit/Cargo.toml b/crates/swc_xml_visit/Cargo.toml index 362f3ece4b08..2c9985920470 100644 --- a/crates/swc_xml_visit/Cargo.toml +++ b/crates/swc_xml_visit/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_xml_visit" repository = "https://github.com/swc-project/swc.git" -version = "0.4.17" +version = "0.5.0" [package.metadata.docs.rs] all-features = true @@ -27,4 +27,4 @@ serde = { version = "1", optional = true } swc_atoms = { version = "0.4.25", path = "../swc_atoms" } swc_common = { version = "0.29.16", path = "../swc_common" } swc_visit = { version = "0.5.3", path = "../swc_visit" } -swc_xml_ast = { version = "0.4.17", path = "../swc_xml_ast" } +swc_xml_ast = { version = "0.5.0", path = "../swc_xml_ast" }