From d00b29120a7dc01230df488cd4635ac164087bfe Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Fri, 2 Dec 2022 05:00:20 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ Cargo.lock | 6 +++--- crates/swc_xml/Cargo.toml | 6 +++--- crates/swc_xml_codegen/Cargo.toml | 4 ++-- crates/swc_xml_parser/Cargo.toml | 2 +- 5 files changed, 12 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 80bf9016241..38b260d2a6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,9 @@ - **(es/parser)** Fix `typeof` in `TSCallSignatureDeclaration` (#6553) ([aa28aa0](https://github.com/swc-project/swc/commit/aa28aa0c7fefcaea063340c711a5ea8a3ba60e7b)) + +- **(xml/parser)** Fix parsing of legacy document types (#6555) ([cdf0d8a](https://github.com/swc-project/swc/commit/cdf0d8a8b59a05498b6ca609d8a2ecf3c2f35f28)) + ### Features diff --git a/Cargo.lock b/Cargo.lock index c1e9e034bc7..4b00dcf8723 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4436,7 +4436,7 @@ dependencies = [ [[package]] name = "swc_xml" -version = "0.7.0" +version = "0.7.1" dependencies = [ "swc_xml_ast", "swc_xml_codegen", @@ -4457,7 +4457,7 @@ dependencies = [ [[package]] name = "swc_xml_codegen" -version = "0.7.0" +version = "0.7.1" dependencies = [ "auto_impl", "bitflags", @@ -4484,7 +4484,7 @@ dependencies = [ [[package]] name = "swc_xml_parser" -version = "0.7.0" +version = "0.7.1" dependencies = [ "serde", "serde_json", diff --git a/crates/swc_xml/Cargo.toml b/crates/swc_xml/Cargo.toml index 40948c88240..c9f38007797 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.7.0" +version = "0.7.1" [package.metadata.docs.rs] all-features = true @@ -17,6 +17,6 @@ bench = false [dependencies] swc_xml_ast = {version = "0.6.0", path = "../swc_xml_ast"} -swc_xml_codegen = {version = "0.7.0", path = "../swc_xml_codegen"} -swc_xml_parser = {version = "0.7.0", path = "../swc_xml_parser"} +swc_xml_codegen = {version = "0.7.1", path = "../swc_xml_codegen"} +swc_xml_parser = {version = "0.7.1", path = "../swc_xml_parser"} swc_xml_visit = {version = "0.6.0", path = "../swc_xml_visit"} diff --git a/crates/swc_xml_codegen/Cargo.toml b/crates/swc_xml_codegen/Cargo.toml index 0ad0fd9cbfd..68ff2ed472d 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.7.0" +version = "0.7.1" [lib] bench = false @@ -28,6 +28,6 @@ swc_xml_codegen_macros = { version = "0.1.0", path = "../swc_xml_codegen_macros" swc_common = { version = "0.29.16", path = "../swc_common", features = [ "sourcemap", ] } -swc_xml_parser = { version = "0.7.0", path = "../swc_xml_parser" } +swc_xml_parser = { version = "0.7.1", path = "../swc_xml_parser" } swc_xml_visit = { version = "0.6.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 65151454b75..97354865926 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.7.0" +version = "0.7.1" [lib] bench = false