From 3fe4c45a08661c8c43696a85d92a827d58cd1359 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Tue, 18 Oct 2022 14:18:44 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ Cargo.lock | 4 ++-- crates/swc_html/Cargo.toml | 4 ++-- crates/swc_html_minifier/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 030a4a4b86c..9189953d186 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,9 @@ - **(html/minifier)** Merge identical metadata elements (#6183) ([41093b0](https://github.com/swc-project/swc/commit/41093b022d8d3304f9d235fd5b9dd386fecb8c3c)) + +- **(html/minifier)** Compress `javascript:` URLs (#6185) ([8f00d1a](https://github.com/swc-project/swc/commit/8f00d1a934fbc52594b62ab4c6d0eff9c2e73e60)) + ### Refactor diff --git a/Cargo.lock b/Cargo.lock index 967d523a80a..932b7fe8bdb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4045,7 +4045,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.89.7" +version = "0.89.8" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -4097,7 +4097,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.86.7" +version = "0.86.8" dependencies = [ "criterion", "once_cell", diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index 73b69b367a6..a7c9be9a42a 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.89.7" +version = "0.89.8" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.26.10", path = "../swc_html_ast"} swc_html_codegen = {version = "0.35.12", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.86.7", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.86.8", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.32.11", path = "../swc_html_parser"} swc_html_visit = {version = "0.26.10", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index e2ccbb85c3e..c8b8fdd65e7 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.86.7" +version = "0.86.8" [lib] bench = false