diff --git a/CHANGELOG.md b/CHANGELOG.md index 555ed889c3a..b36f8b89c8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,22 @@ # Changelog ## [unreleased] +### Features + + + +- **(html/minifier)** Add `collapse_boolean_attributes` option (#4960) ([3957bc6](https://github.com/swc-project/swc/commit/3957bc64b7d278cdf737e9da514fa94780044be2)) + +## [1.2.201] - 2022-06-14 + +### Bug Fixes + + + +- **(ci)** Revert malloc changes ([709ad3e](https://github.com/swc-project/swc/commit/709ad3e087e833c5bc69c887ca963e4b7a9a81f7)) + +## [1.2.200] - 2022-06-14 + ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 6aa0c9d649b..66b12109617 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3911,7 +3911,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.12.0" +version = "0.13.0" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -3960,7 +3960,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.9.1" +version = "0.10.0" dependencies = [ "serde", "serde_json", diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index 0592bed4c1f..a6b54c35712 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.12.0" +version = "0.13.0" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.9.0", path = "../swc_html_ast"} swc_html_codegen = {version = "0.12.0", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.9.0", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.10.0", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.12.0", path = "../swc_html_parser"} swc_html_visit = {version = "0.9.0", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 60a2bbc12fa..308ce65820f 100644 --- a/crates/swc_html_minifier/Cargo.toml +++ b/crates/swc_html_minifier/Cargo.toml @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_html_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.9.1" +version = "0.10.0" [lib] bench = false