From dc2c416bee00eb46742b6017c575e740dbd67c0d Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Wed, 19 Oct 2022 02:54:47 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ Cargo.lock | 10 +++++----- crates/swc_core/Cargo.toml | 4 ++-- crates/swc_css/Cargo.toml | 4 ++-- crates/swc_css_minifier/Cargo.toml | 2 +- crates/swc_html/Cargo.toml | 4 ++-- crates/swc_html_minifier/Cargo.toml | 4 ++-- 7 files changed, 17 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c97545a4564..baef3dd60c8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,9 @@ - **(css/codegen)** Fix codegen of pseudo class selectors (#6186) ([4fba0db](https://github.com/swc-project/swc/commit/4fba0db3d9a4ffc6c13e134b3c75441737ff83d5)) +- **(css/minifier)** Don't touch `@supports` (#6199) ([ac7cfa1](https://github.com/swc-project/swc/commit/ac7cfa13b62b81018cccb8c424adb1cae679446c)) + + - **(es/minifier)** Remove wrong rule (#6201) ([842abd4](https://github.com/swc-project/swc/commit/842abd45759a31e9b6ef2b3a0679dee3ad335791)) diff --git a/Cargo.lock b/Cargo.lock index c2c81effdb2f..9a15bf0c2e38 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3168,7 +3168,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.39.7" +version = "0.39.8" dependencies = [ "binding_macros", "once_cell", @@ -3217,7 +3217,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.136.3" +version = "0.136.4" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3310,7 +3310,7 @@ dependencies = [ [[package]] name = "swc_css_minifier" -version = "0.98.3" +version = "0.98.4" dependencies = [ "criterion", "serde", @@ -4045,7 +4045,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.89.10" +version = "0.89.11" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -4097,7 +4097,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.86.10" +version = "0.86.11" dependencies = [ "criterion", "once_cell", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index fa2d2b00320d..3e5c5536cff7 100644 --- a/crates/swc_core/Cargo.toml +++ b/crates/swc_core/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_core" repository = "https://github.com/swc-project/swc.git" -version = "0.39.7" +version = "0.39.8" [package.metadata.docs.rs] features = [ "common_perf", @@ -325,7 +325,7 @@ swc_cached = { optional = true, version = "0.3.15", path = swc_common = { optional = true, version = "0.29.9", path = "../swc_common" } swc_css_ast = { optional = true, version = "0.123.1", path = "../swc_css_ast" } swc_css_codegen = { optional = true, version = "0.133.3", path = "../swc_css_codegen" } -swc_css_minifier = { optional = true, version = "0.98.3", path = "../swc_css_minifier" } +swc_css_minifier = { optional = true, version = "0.98.4", path = "../swc_css_minifier" } swc_css_parser = { optional = true, version = "0.132.2", path = "../swc_css_parser" } swc_css_prefixer = { optional = true, version = "0.134.3", path = "../swc_css_prefixer" } swc_css_utils = { optional = true, version = "0.120.1", path = "../swc_css_utils/" } diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index b75feef56e6f..5707edefd245 100644 --- a/crates/swc_css/Cargo.toml +++ b/crates/swc_css/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_css" repository = "https://github.com/swc-project/swc.git" -version = "0.136.3" +version = "0.136.4" [package.metadata.docs.rs] all-features = true @@ -25,7 +25,7 @@ prefixer = ["swc_css_prefixer"] swc_css_ast = {version = "0.123.1", path = "../swc_css_ast"} swc_css_codegen = {version = "0.133.3", path = "../swc_css_codegen"} swc_css_compat = {version = "0.8.3", path = "../swc_css_compat", optional = true} -swc_css_minifier = {version = "0.98.3", path = "../swc_css_minifier", optional = true} +swc_css_minifier = {version = "0.98.4", path = "../swc_css_minifier", optional = true} swc_css_modules = {version = "0.9.3", path = "../swc_css_modules", optional = true} swc_css_parser = {version = "0.132.2", path = "../swc_css_parser"} swc_css_prefixer = {version = "0.134.3", path = "../swc_css_prefixer", optional = true} diff --git a/crates/swc_css_minifier/Cargo.toml b/crates/swc_css_minifier/Cargo.toml index 3a82774d1db6..0abafe204a9c 100644 --- a/crates/swc_css_minifier/Cargo.toml +++ b/crates/swc_css_minifier/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_css_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.98.3" +version = "0.98.4" [lib] bench = false diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index 5dab223e3d02..db25a6c5a5a4 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.10" +version = "0.89.11" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.26.11", path = "../swc_html_ast"} swc_html_codegen = {version = "0.35.13", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.86.10", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.86.11", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.32.12", path = "../swc_html_parser"} swc_html_visit = {version = "0.26.11", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 5b19091a5dac..7102e775f2b2 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.10" +version = "0.86.11" [lib] bench = false @@ -24,7 +24,7 @@ swc_cached = { version = "0.3.15", path = "../swc_cached" } swc_common = { version = "0.29.9", path = "../swc_common" } swc_css_ast = { version = "0.123.1", path = "../swc_css_ast" } swc_css_codegen = { version = "0.133.3", path = "../swc_css_codegen" } -swc_css_minifier = { version = "0.98.3", path = "../swc_css_minifier" } +swc_css_minifier = { version = "0.98.4", path = "../swc_css_minifier" } swc_css_parser = { version = "0.132.2", path = "../swc_css_parser" } swc_ecma_ast = { version = "0.94.12", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.127.18", path = "../swc_ecma_codegen" }