From c74ca2f23fe23563438254615c31863ec85c48c1 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Mon, 12 Dec 2022 04:31:14 +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 a495e2c3f285..1f53b5e0ce05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,9 @@ - **(css/minifier)** Fix compressions of transform functions (#6617) ([208fd55](https://github.com/swc-project/swc/commit/208fd559ba383b32c72ffdf5d8ad50cbf9679ec6)) +- **(css/minifier)** Fix compression of timing functions (#6618) ([59e8bf4](https://github.com/swc-project/swc/commit/59e8bf49761c9f2434dcfb18153f93234d3d69a7)) + + - **(es/codegen)** Don't print trailing coma for a rest argument (#6610) ([68d76af](https://github.com/swc-project/swc/commit/68d76afe5d99f834dd4578cc50bd48624f76c21d)) diff --git a/Cargo.lock b/Cargo.lock index 91957871a48e..d54108990f2d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3260,7 +3260,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.48.1" +version = "0.48.2" dependencies = [ "anyhow", "binding_macros", @@ -3313,7 +3313,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.144.1" +version = "0.144.2" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3406,7 +3406,7 @@ dependencies = [ [[package]] name = "swc_css_minifier" -version = "0.106.1" +version = "0.106.2" dependencies = [ "criterion", "serde", @@ -4159,7 +4159,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.100.1" +version = "0.100.2" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -4211,7 +4211,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.97.1" +version = "0.97.2" dependencies = [ "criterion", "once_cell", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index b1f1ca990360..bd9a3a4a9c55 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.48.1" +version = "0.48.2" [package.metadata.docs.rs] features = [ "common_perf", @@ -348,7 +348,7 @@ swc_cached = { optional = true, version = "0.3.15", path = swc_common = { optional = true, version = "0.29.20", path = "../swc_common" } swc_css_ast = { optional = true, version = "0.131.0", path = "../swc_css_ast" } swc_css_codegen = { optional = true, version = "0.141.0", path = "../swc_css_codegen" } -swc_css_minifier = { optional = true, version = "0.106.1", path = "../swc_css_minifier" } +swc_css_minifier = { optional = true, version = "0.106.2", path = "../swc_css_minifier" } swc_css_modules = { optional = true, version = "0.17.0", path = "../swc_css_modules" } swc_css_parser = { optional = true, version = "0.140.0", path = "../swc_css_parser" } swc_css_prefixer = { optional = true, version = "0.142.0", path = "../swc_css_prefixer" } diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index 05fcac8bc753..e731eb31d502 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.144.1" +version = "0.144.2" [package.metadata.docs.rs] all-features = true @@ -25,7 +25,7 @@ prefixer = ["swc_css_prefixer"] swc_css_ast = {version = "0.131.0", path = "../swc_css_ast"} swc_css_codegen = {version = "0.141.0", path = "../swc_css_codegen"} swc_css_compat = {version = "0.16.0", path = "../swc_css_compat", optional = true} -swc_css_minifier = {version = "0.106.1", path = "../swc_css_minifier", optional = true} +swc_css_minifier = {version = "0.106.2", path = "../swc_css_minifier", optional = true} swc_css_modules = {version = "0.17.0", path = "../swc_css_modules", optional = true} swc_css_parser = {version = "0.140.0", path = "../swc_css_parser"} swc_css_prefixer = {version = "0.142.0", path = "../swc_css_prefixer", optional = true} diff --git a/crates/swc_css_minifier/Cargo.toml b/crates/swc_css_minifier/Cargo.toml index 6f748c32cc13..71102fbfaf52 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.106.1" +version = "0.106.2" [lib] bench = false diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index bc5ebc3ac62e..bbde4020e3b9 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.100.1" +version = "0.100.2" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.28.12", path = "../swc_html_ast"} swc_html_codegen = {version = "0.37.21", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.97.1", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.97.2", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.34.21", path = "../swc_html_parser"} swc_html_visit = {version = "0.28.12", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 21b61e64e3c4..c1d0c097490c 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.97.1" +version = "0.97.2" [lib] bench = false @@ -24,7 +24,7 @@ swc_cached = { version = "0.3.15", path = "../swc_cached" } swc_common = { version = "0.29.20", path = "../swc_common" } swc_css_ast = { version = "0.131.0", path = "../swc_css_ast" } swc_css_codegen = { version = "0.141.0", path = "../swc_css_codegen" } -swc_css_minifier = { version = "0.106.1", path = "../swc_css_minifier" } +swc_css_minifier = { version = "0.106.2", path = "../swc_css_minifier" } swc_css_parser = { version = "0.140.0", path = "../swc_css_parser" } swc_ecma_ast = { version = "0.95.4", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.128.9", path = "../swc_ecma_codegen" }