From c9918482acb20c98e29705e393a11ac5ad11ca8d Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Tue, 14 Jun 2022 13:34:32 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 6 ++++++ Cargo.lock | 12 ++++++------ crates/swc_html/Cargo.toml | 12 ++++++------ crates/swc_html_ast/Cargo.toml | 2 +- crates/swc_html_codegen/Cargo.toml | 8 ++++---- crates/swc_html_minifier/Cargo.toml | 10 +++++----- crates/swc_html_parser/Cargo.toml | 6 +++--- crates/swc_html_visit/Cargo.toml | 4 ++-- 8 files changed, 33 insertions(+), 27 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd792727b2b..0443b5f3361 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ - **(es/parser)** Don't assume the length of char (#4967) ([3e03ebf](https://github.com/swc-project/swc/commit/3e03ebf8bb527d3237b309c3df3a24bc9ebf7314)) +### Features + + + +- **(html)** Support self-closing flag (#4950) ([5c2a918](https://github.com/swc-project/swc/commit/5c2a918946105d26d107b8bd869ee5dc76c9c04d)) + ### Miscellaneous Tasks diff --git a/Cargo.lock b/Cargo.lock index 8e9b2b4e187..3dd621a2748 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3911,7 +3911,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.13.0" +version = "0.14.0" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -3922,7 +3922,7 @@ dependencies = [ [[package]] name = "swc_html_ast" -version = "0.9.0" +version = "0.10.0" dependencies = [ "is-macro", "serde", @@ -3933,7 +3933,7 @@ dependencies = [ [[package]] name = "swc_html_codegen" -version = "0.12.4" +version = "0.13.0" dependencies = [ "auto_impl", "bitflags", @@ -3960,7 +3960,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.10.0" +version = "0.11.0" dependencies = [ "serde", "serde_json", @@ -3975,7 +3975,7 @@ dependencies = [ [[package]] name = "swc_html_parser" -version = "0.12.3" +version = "0.13.0" dependencies = [ "criterion", "serde", @@ -4001,7 +4001,7 @@ dependencies = [ [[package]] name = "swc_html_visit" -version = "0.9.0" +version = "0.10.0" dependencies = [ "swc_atoms", "swc_common", diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index a6b54c35712..8c603e94b85 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.13.0" +version = "0.14.0" [package.metadata.docs.rs] all-features = true @@ -19,8 +19,8 @@ bench = false 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.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"} +swc_html_ast = {version = "0.10.0", path = "../swc_html_ast"} +swc_html_codegen = {version = "0.13.0", path = "../swc_html_codegen"} +swc_html_minifier = {version = "0.11.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_ast/Cargo.toml b/crates/swc_html_ast/Cargo.toml index 442caada014..c34ddd7845e 100644 --- a/crates/swc_html_ast/Cargo.toml +++ b/crates/swc_html_ast/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_html_ast" repository = "https://github.com/swc-project/swc.git" -version = "0.9.0" +version = "0.10.0" [lib] bench = false diff --git a/crates/swc_html_codegen/Cargo.toml b/crates/swc_html_codegen/Cargo.toml index 05c7e84e608..6078950ff05 100644 --- a/crates/swc_html_codegen/Cargo.toml +++ b/crates/swc_html_codegen/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_html_codegen" repository = "https://github.com/swc-project/swc.git" -version = "0.12.4" +version = "0.13.0" [lib] bench = false @@ -17,7 +17,7 @@ auto_impl = "0.5.0" bitflags = "1.3.2" swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_common = { version = "0.18.0", path = "../swc_common"} -swc_html_ast = {version = "0.9.0", path = "../swc_html_ast"} +swc_html_ast = {version = "0.10.0", path = "../swc_html_ast"} swc_html_codegen_macros = {version = "0.1.0", path = "../swc_html_codegen_macros"} swc_html_utils = { version = "0.1.0", path = "../swc_html_utils" } @@ -25,6 +25,6 @@ swc_html_utils = { version = "0.1.0", path = "../swc_html_utils" } swc_common = { version = "0.18.0", path = "../swc_common", features = [ "sourcemap", ]} -swc_html_parser = {version = "0.12.0", path = "../swc_html_parser"} -swc_html_visit = {version = "0.9.0", path = "../swc_html_visit"} +swc_html_parser = {version = "0.13.0", path = "../swc_html_parser"} +swc_html_visit = {version = "0.10.0", path = "../swc_html_visit"} testing = {version = "0.20.0", path = "../testing"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 308ce65820f..30ac66e34e0 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.10.0" +version = "0.11.0" [lib] bench = false @@ -20,10 +20,10 @@ serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.61" swc_atoms = { version = "0.2.9", path = "../swc_atoms" } swc_common = { version = "0.18.0", path = "../swc_common" } -swc_html_ast = { version = "0.9.0", path = "../swc_html_ast" } -swc_html_visit = { version = "0.9.0", path = "../swc_html_visit" } +swc_html_ast = { version = "0.10.0", path = "../swc_html_ast" } +swc_html_visit = { version = "0.10.0", path = "../swc_html_visit" } [dev-dependencies] -swc_html_codegen = { version = "0.12.0", path = "../swc_html_codegen" } -swc_html_parser = { version = "0.12.0", path = "../swc_html_parser" } +swc_html_codegen = { version = "0.13.0", path = "../swc_html_codegen" } +swc_html_parser = { version = "0.13.0", path = "../swc_html_parser" } testing = { version = "0.20.0", path = "../testing" } diff --git a/crates/swc_html_parser/Cargo.toml b/crates/swc_html_parser/Cargo.toml index b35f167e15e..678af9c80cc 100644 --- a/crates/swc_html_parser/Cargo.toml +++ b/crates/swc_html_parser/Cargo.toml @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json"] license = "Apache-2.0" name = "swc_html_parser" repository = "https://github.com/swc-project/swc.git" -version = "0.12.3" +version = "0.13.0" [lib] bench = false @@ -21,14 +21,14 @@ debug = [] [dependencies] swc_atoms = { version = "0.2.7", path = "../swc_atoms" } swc_common = { version = "0.18.0", path = "../swc_common" } -swc_html_ast = { version = "0.9.0", path = "../swc_html_ast" } +swc_html_ast = { version = "0.10.0", path = "../swc_html_ast" } swc_html_utils = { version = "0.1.0", path = "../swc_html_utils" } [dev-dependencies] criterion = "0.3" serde = "1.0.127" serde_json = "1.0.66" -swc_html_visit = { version = "0.9.0", path = "../swc_html_visit" } +swc_html_visit = { version = "0.10.0", path = "../swc_html_visit" } swc_node_base = { version = "0.5.0", path = "../swc_node_base" } testing = { version = "0.20.0", path = "../testing" } diff --git a/crates/swc_html_visit/Cargo.toml b/crates/swc_html_visit/Cargo.toml index 03ebcb30f4f..abaf860dda3 100644 --- a/crates/swc_html_visit/Cargo.toml +++ b/crates/swc_html_visit/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_html_visit" repository = "https://github.com/swc-project/swc.git" -version = "0.9.0" +version = "0.10.0" [lib] bench = false @@ -14,5 +14,5 @@ bench = false [dependencies] swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_common = { version = "0.18.0", path = "../swc_common"} -swc_html_ast = {version = "0.9.0", path = "../swc_html_ast"} +swc_html_ast = {version = "0.10.0", path = "../swc_html_ast"} swc_visit = {version = "0.3.0", path = "../swc_visit"}