diff --git a/CHANGELOG.md b/CHANGELOG.md index bee6aff9d3b4..4fef0db77de9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,9 @@ - **(es/minifier)** Preserve unused imported specifiers (#6458) ([dabea71](https://github.com/swc-project/swc/commit/dabea71c4461a96836e4456bd2c6bbcf07f238a4)) + +- **(xml/parser)** Fix parsing of comments (#6449) ([3a0d98b](https://github.com/swc-project/swc/commit/3a0d98b6e986dd175b64534bc99c2a59a99b97d0)) + ### Features diff --git a/Cargo.lock b/Cargo.lock index 8320f7f58f4e..6e42d500f2c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4333,7 +4333,7 @@ dependencies = [ [[package]] name = "swc_xml" -version = "0.5.0" +version = "0.5.1" dependencies = [ "swc_xml_ast", "swc_xml_codegen", @@ -4354,7 +4354,7 @@ dependencies = [ [[package]] name = "swc_xml_codegen" -version = "0.5.0" +version = "0.5.1" dependencies = [ "auto_impl", "bitflags", @@ -4381,7 +4381,7 @@ dependencies = [ [[package]] name = "swc_xml_parser" -version = "0.5.0" +version = "0.5.1" dependencies = [ "serde", "serde_json", diff --git a/crates/swc_xml/Cargo.toml b/crates/swc_xml/Cargo.toml index 821e9657d177..7b6c7cb7898c 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.0" +version = "0.5.1" [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.5.0", path = "../swc_xml_codegen"} -swc_xml_parser = {version = "0.5.0", path = "../swc_xml_parser"} +swc_xml_codegen = {version = "0.5.1", path = "../swc_xml_codegen"} +swc_xml_parser = {version = "0.5.1", 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 549e8a60a71f..e5a3a76951c3 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.0" +version = "0.5.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.14", path = "../swc_common", features = [ "sourcemap", ] } -swc_xml_parser = { version = "0.5.0", path = "../swc_xml_parser" } +swc_xml_parser = { version = "0.5.1", 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 2cc6e837d9c1..3f3a99b354d5 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.0" +version = "0.5.1" [lib] bench = false