diff --git a/CHANGELOG.md b/CHANGELOG.md index c85095eb3a4..4be049227e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,6 +40,9 @@ - **(css/parser)** Support new nesting spec (#6337) ([e0967ef](https://github.com/swc-project/swc/commit/e0967efa6eb640341e640b2703b7a96da2f5acdb)) + +- **(html/minifier)** Improve merging of group elements (#6349) ([34b3710](https://github.com/swc-project/swc/commit/34b3710c9ca85bf65ec3cf23d2d3ae838d218f52)) + ### Miscellaneous Tasks diff --git a/Cargo.lock b/Cargo.lock index 6d01c732121..feba3bea088 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4040,7 +4040,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.93.48" +version = "0.93.49" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -4092,7 +4092,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.90.48" +version = "0.90.49" dependencies = [ "criterion", "once_cell", diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index 6c7bd88ecb5..d594101ef4a 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.93.48" +version = "0.93.49" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.28.4", path = "../swc_html_ast"} swc_html_codegen = {version = "0.37.10", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.90.48", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.90.49", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.34.10", path = "../swc_html_parser"} swc_html_visit = {version = "0.28.4", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 4e19cfe7b57..5f79bcc03a9 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.90.48" +version = "0.90.49" [lib] bench = false