From ba9f47d35660a90cf2d34b59850cc57d43a4d848 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Wed, 16 Nov 2022 04:13:27 +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 0f126e7f73d1..54e023d8235a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,9 @@ - **(html/minifier)** Fix script/style merging (#6443) ([1dfd8ce](https://github.com/swc-project/swc/commit/1dfd8cef88b16180e6525b524637fd3eb627b857)) + +- **(xml/parser)** Fix parsing of pi (#6450) ([6388920](https://github.com/swc-project/swc/commit/638892071a8713a278c114aae6fedc74f77a8cc0)) + ### Features diff --git a/Cargo.lock b/Cargo.lock index 85ec307068bb..4d14077101ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4329,7 +4329,7 @@ dependencies = [ [[package]] name = "swc_xml" -version = "0.4.16" +version = "0.5.0" dependencies = [ "swc_xml_ast", "swc_xml_codegen", @@ -4350,7 +4350,7 @@ dependencies = [ [[package]] name = "swc_xml_codegen" -version = "0.4.16" +version = "0.5.0" dependencies = [ "auto_impl", "bitflags", @@ -4377,7 +4377,7 @@ dependencies = [ [[package]] name = "swc_xml_parser" -version = "0.4.16" +version = "0.5.0" dependencies = [ "serde", "serde_json", diff --git a/crates/swc_xml/Cargo.toml b/crates/swc_xml/Cargo.toml index ef843d1db323..821e9657d177 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.4.16" +version = "0.5.0" [package.metadata.docs.rs] all-features = true @@ -17,6 +17,6 @@ bench = false [dependencies] swc_xml_ast = {version = "0.4.15", path = "../swc_xml_ast"} -swc_xml_codegen = {version = "0.4.16", path = "../swc_xml_codegen"} -swc_xml_parser = {version = "0.4.16", path = "../swc_xml_parser"} +swc_xml_codegen = {version = "0.5.0", path = "../swc_xml_codegen"} +swc_xml_parser = {version = "0.5.0", path = "../swc_xml_parser"} swc_xml_visit = {version = "0.4.15", path = "../swc_xml_visit"} diff --git a/crates/swc_xml_codegen/Cargo.toml b/crates/swc_xml_codegen/Cargo.toml index 94dbb175a759..549e8a60a71f 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.4.16" +version = "0.5.0" [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.14", path = "../swc_common", features = [ "sourcemap", ] } -swc_xml_parser = { version = "0.4.16", path = "../swc_xml_parser" } +swc_xml_parser = { version = "0.5.0", path = "../swc_xml_parser" } swc_xml_visit = { version = "0.4.15", path = "../swc_xml_visit" } testing = { version = "0.31.14", path = "../testing" } diff --git a/crates/swc_xml_parser/Cargo.toml b/crates/swc_xml_parser/Cargo.toml index 5d998fbe9ebe..2cc6e837d9c1 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.4.16" +version = "0.5.0" [lib] bench = false