diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a874b4c72e..4ff274bc7ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,9 @@ - **(html/codegen)** Improve API (#5031) ([8bf924a](https://github.com/swc-project/swc/commit/8bf924ae5f7305d1db65cf5a9b09f76cb7903e2b)) + +- **(html/minifier)** Add `remove_comments` option (#5037) ([e6c78d0](https://github.com/swc-project/swc/commit/e6c78d0b1d863c61882c941f62fccd04a501530b)) + ## [1.2.205] - 2022-06-24 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 8b39c9c0431..52299a8c906 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3911,7 +3911,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.19.0" +version = "0.20.0" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -3960,7 +3960,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.16.0" +version = "0.17.0" dependencies = [ "once_cell", "serde", diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index bab6306fbad..0314df730f9 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.19.0" +version = "0.20.0" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.10.0", path = "../swc_html_ast"} swc_html_codegen = {version = "0.15.0", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.16.0", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.17.0", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.13.0", path = "../swc_html_parser"} swc_html_visit = {version = "0.10.0", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index c8ecbc6f03d..637d5935dd9 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.16.0" +version = "0.17.0" [lib] bench = false