diff --git a/CHANGELOG.md b/CHANGELOG.md index 403e010ee7d..c3bc526a9f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,9 @@ - **(es/typescript)** Fix stack overflow (#6250) ([28ec6e8](https://github.com/swc-project/swc/commit/28ec6e8fc70cf74722c93353c03e4fdedb21954a)) + +- **(html/minifier)** Merge style blocks (#6264) ([028951c](https://github.com/swc-project/swc/commit/028951c36c9575662b3774bd445a83f597e880d4)) + ### Features diff --git a/Cargo.lock b/Cargo.lock index 1b388d28c02..c95d2197e2b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4036,7 +4036,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.93.21" +version = "0.93.22" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -4088,7 +4088,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.90.21" +version = "0.90.22" dependencies = [ "criterion", "once_cell", diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index 977e0044d29..df537e199cb 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.21" +version = "0.93.22" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.28.3", path = "../swc_html_ast"} swc_html_codegen = {version = "0.37.7", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.90.21", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.90.22", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.34.7", path = "../swc_html_parser"} swc_html_visit = {version = "0.28.3", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 56cde7a314b..189664105bc 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.21" +version = "0.90.22" [lib] bench = false