From 4f39d82cd0df5e6e67be0ee0423af437fab195fa Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Tue, 13 Dec 2022 13:01:07 +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 dcd696cfee25..647c06145b52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -50,6 +50,9 @@ - **(css/minifier)** Remove adjacent identical declarations (#6619) ([fb94694](https://github.com/swc-project/swc/commit/fb94694cf3d95c26cc10aa9824f58e68b73b17ca)) +- **(css/prefixer)** Prefix percentage with `opacity` (#6638) ([2fee4d1](https://github.com/swc-project/swc/commit/2fee4d167ac908e04c04f65fe6e4a867a2b7d950)) + + - **(dbg-swc)** Kill `creduce` on drop (#6614) ([2bf7805](https://github.com/swc-project/swc/commit/2bf78059801d8f07bf31eab6b077d7fb723837f8)) ### Miscellaneous Tasks diff --git a/Cargo.lock b/Cargo.lock index 11350b89ee7b..01a9ce2ea0fa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3260,7 +3260,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.48.10" +version = "0.48.11" dependencies = [ "anyhow", "binding_macros", @@ -3313,7 +3313,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.144.8" +version = "0.144.9" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3458,7 +3458,7 @@ dependencies = [ [[package]] name = "swc_css_prefixer" -version = "0.142.2" +version = "0.142.3" dependencies = [ "once_cell", "preset_env_base", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 2109e0499839..1b53f4d6ee43 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.10" +version = "0.48.11" [package.metadata.docs.rs] features = [ "common_perf", @@ -351,7 +351,7 @@ swc_css_codegen = { optional = true, version = "0.141.2", path swc_css_minifier = { optional = true, version = "0.106.6", path = "../swc_css_minifier" } swc_css_modules = { optional = true, version = "0.17.4", path = "../swc_css_modules" } swc_css_parser = { optional = true, version = "0.140.2", path = "../swc_css_parser" } -swc_css_prefixer = { optional = true, version = "0.142.2", path = "../swc_css_prefixer" } +swc_css_prefixer = { optional = true, version = "0.142.3", path = "../swc_css_prefixer" } swc_css_utils = { optional = true, version = "0.128.2", path = "../swc_css_utils/" } swc_css_visit = { optional = true, version = "0.130.2", path = "../swc_css_visit" } swc_ecma_ast = { optional = true, version = "0.95.6", path = "../swc_ecma_ast" } diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index a48158e7fdff..4c947c7a2235 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.8" +version = "0.144.9" [package.metadata.docs.rs] all-features = true @@ -28,6 +28,6 @@ swc_css_compat = {version = "0.16.4", path = "../swc_css_compat", optional = tru swc_css_minifier = {version = "0.106.6", path = "../swc_css_minifier", optional = true} swc_css_modules = {version = "0.17.4", path = "../swc_css_modules", optional = true} swc_css_parser = {version = "0.140.2", path = "../swc_css_parser"} -swc_css_prefixer = {version = "0.142.2", path = "../swc_css_prefixer", optional = true} +swc_css_prefixer = {version = "0.142.3", path = "../swc_css_prefixer", optional = true} swc_css_utils = {version = "0.128.2", path = "../swc_css_utils/"} swc_css_visit = {version = "0.130.2", path = "../swc_css_visit"} diff --git a/crates/swc_css_prefixer/Cargo.toml b/crates/swc_css_prefixer/Cargo.toml index 0f17f90f748c..f2619c0de3cd 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.2" +version = "0.142.3" [lib] bench = false