diff --git a/CHANGELOG.md b/CHANGELOG.md index 528f680c346..4c6925cdb63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog ## [unreleased] +### Features + + + +- **(html/minifier)** Allow specifying options for other tools (#5125) ([dada2d7](https://github.com/swc-project/swc/commit/dada2d7d554fa0733a3c65c512777f1548d41a35)) + +## [1.2.212] - 2022-07-11 + ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 3955901c093..d441ce1f6f8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3923,7 +3923,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.39.0" +version = "0.40.0" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -3972,7 +3972,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.36.0" +version = "0.37.0" dependencies = [ "once_cell", "serde", diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index 416fe57a87b..7daa7bbf5aa 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.39.0" +version = "0.40.0" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.17.0", path = "../swc_html_ast"} swc_html_codegen = {version = "0.22.0", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.36.0", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.37.0", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.20.0", path = "../swc_html_parser"} swc_html_visit = {version = "0.17.0", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index a5a28f8bfbf..e6ed19d09cc 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.36.0" +version = "0.37.0" [lib] bench = false