From 285880583fd8da6632f5443da31ae53f074c82a2 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Mon, 19 Dec 2022 05:55:53 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ Cargo.lock | 6 +++--- crates/swc_core/Cargo.toml | 4 ++-- crates/swc_css/Cargo.toml | 4 ++-- crates/swc_css_prefixer/Cargo.toml | 2 +- 5 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1399e15fabdd..7919aea1e97b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,6 +43,9 @@ - **(css/prefixer)** Support font-face format (#6644) ([199ac74](https://github.com/swc-project/swc/commit/199ac7461814553bab97c1f0f7b1c89f34897122)) + +- **(css/prefixer)** Support `word-wrap` (#6679) ([46241b4](https://github.com/swc-project/swc/commit/46241b4e554b7a6ee090db8e35acd0151e8caf2b)) + ### Performance diff --git a/Cargo.lock b/Cargo.lock index 85cfb495c239..dd040828b66a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3260,7 +3260,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.48.31" +version = "0.48.32" dependencies = [ "anyhow", "binding_macros", @@ -3313,7 +3313,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.144.25" +version = "0.144.26" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3458,7 +3458,7 @@ dependencies = [ [[package]] name = "swc_css_prefixer" -version = "0.142.12" +version = "0.142.13" dependencies = [ "once_cell", "preset_env_base", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 07561469f02f..d521c1541c47 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.31" +version = "0.48.32" [package.metadata.docs.rs] features = [ "common_perf", @@ -351,7 +351,7 @@ swc_css_codegen = { optional = true, version = "0.141.8", path swc_css_minifier = { optional = true, version = "0.106.16", path = "../swc_css_minifier" } swc_css_modules = { optional = true, version = "0.17.13", path = "../swc_css_modules" } swc_css_parser = { optional = true, version = "0.140.8", path = "../swc_css_parser" } -swc_css_prefixer = { optional = true, version = "0.142.12", path = "../swc_css_prefixer" } +swc_css_prefixer = { optional = true, version = "0.142.13", path = "../swc_css_prefixer" } swc_css_utils = { optional = true, version = "0.128.3", path = "../swc_css_utils/" } swc_css_visit = { optional = true, version = "0.130.3", path = "../swc_css_visit" } swc_ecma_ast = { optional = true, version = "0.95.7", path = "../swc_ecma_ast" } diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index 62b0dbb970a8..be1293506795 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.25" +version = "0.144.26" [package.metadata.docs.rs] all-features = true @@ -28,6 +28,6 @@ swc_css_compat = {version = "0.16.13", path = "../swc_css_compat", optional = tr swc_css_minifier = {version = "0.106.16", path = "../swc_css_minifier", optional = true} swc_css_modules = {version = "0.17.13", path = "../swc_css_modules", optional = true} swc_css_parser = {version = "0.140.8", path = "../swc_css_parser"} -swc_css_prefixer = {version = "0.142.12", path = "../swc_css_prefixer", optional = true} +swc_css_prefixer = {version = "0.142.13", path = "../swc_css_prefixer", optional = true} swc_css_utils = {version = "0.128.3", path = "../swc_css_utils/"} swc_css_visit = {version = "0.130.3", path = "../swc_css_visit"} diff --git a/crates/swc_css_prefixer/Cargo.toml b/crates/swc_css_prefixer/Cargo.toml index 16fdd0861a80..cb153f460912 100644 --- a/crates/swc_css_prefixer/Cargo.toml +++ b/crates/swc_css_prefixer/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"] license = "Apache-2.0" name = "swc_css_prefixer" repository = "https://github.com/swc-project/swc.git" -version = "0.142.12" +version = "0.142.13" [lib] bench = false