diff --git a/CHANGELOG.md b/CHANGELOG.md index baef3dd60c8..6d6019e6293 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,9 @@ - **(html/minifier)** Compress `exportparts` (#6187) ([0ba464d](https://github.com/swc-project/swc/commit/0ba464d64338973d3fa2080bb3b47ac1574cced0)) + +- **(html/minifier)** Fix bugs of merging and removing metadata elements (#6200) ([3546632](https://github.com/swc-project/swc/commit/35466322d6c2e3d09c9d43e0ce773203c9d239b1)) + ### Features diff --git a/Cargo.lock b/Cargo.lock index 9a15bf0c2e3..1246a1b2324 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4045,7 +4045,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.89.11" +version = "0.89.12" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -4097,7 +4097,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.86.11" +version = "0.86.12" dependencies = [ "criterion", "once_cell", diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index db25a6c5a5a..42537fc1938 100644 --- a/crates/swc_html/Cargo.toml +++ b/crates/swc_html/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_html" repository = "https://github.com/swc-project/swc.git" -version = "0.89.11" +version = "0.89.12" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.26.11", path = "../swc_html_ast"} swc_html_codegen = {version = "0.35.13", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.86.11", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.86.12", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.32.12", path = "../swc_html_parser"} swc_html_visit = {version = "0.26.11", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 7102e775f2b..fa21df02087 100644 --- a/crates/swc_html_minifier/Cargo.toml +++ b/crates/swc_html_minifier/Cargo.toml @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"] license = "Apache-2.0" name = "swc_html_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.86.11" +version = "0.86.12" [lib] bench = false