diff --git a/CHANGELOG.md b/CHANGELOG.md index 8339be3d2eb9..bee6aff9d3b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,9 @@ - **(html/minifier)** Remove empty script and style tags with attributes (#6447) ([7441721](https://github.com/swc-project/swc/commit/74417217a98bb26dcce7f913bb8ee35b538f0d06)) + +- **(html/minifier)** Use the latest `EsVersion` (#6453) ([7f6bf59](https://github.com/swc-project/swc/commit/7f6bf59a98710ce7964e99ab621a68dc729c021d)) + ### Refactor diff --git a/Cargo.lock b/Cargo.lock index 5e0c642d349b..8320f7f58f4e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4045,7 +4045,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.96.16" +version = "0.96.17" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -4097,7 +4097,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.93.16" +version = "0.93.17" dependencies = [ "criterion", "once_cell", diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index 8d923c7c8728..93538364d222 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.96.16" +version = "0.96.17" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.28.5", path = "../swc_html_ast"} swc_html_codegen = {version = "0.37.11", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.93.16", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.93.17", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.34.11", path = "../swc_html_parser"} swc_html_visit = {version = "0.28.5", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 7c5a7a9afc16..ff4b46cd5f89 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.93.16" +version = "0.93.17" [lib] bench = false