From 5c005256d6402705ec5de12603d8e13dccd18ee5 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Wed, 6 Sep 2023 10:26:13 +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_modules/Cargo.toml | 2 +- 5 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c4410c85cc9..a0bc286cc07b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ +- **(css/modules)** Aggregate class names when composes is chained. (#7917) ([0db25a2](https://github.com/swc-project/swc/commit/0db25a252cf35e4b64b38bde9f34a2f33eb2f662)) + + - **(es/module)** Revert #7901 (#7906) ([85d6e9b](https://github.com/swc-project/swc/commit/85d6e9be07af7bb788594b21a986636657d86f03)) ### Features diff --git a/Cargo.lock b/Cargo.lock index e365caffa240..d0408cdec891 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3707,7 +3707,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.83.0" +version = "0.83.1" dependencies = [ "anyhow", "binding_macros", @@ -3758,7 +3758,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.155.1" +version = "0.155.2" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3868,7 +3868,7 @@ dependencies = [ [[package]] name = "swc_css_modules" -version = "0.27.1" +version = "0.27.2" dependencies = [ "rustc-hash", "serde", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index feb31a0e0e37..d65d9dfb771c 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.83.0" +version = "0.83.1" [package.metadata.docs.rs] features = [ "allocator_node", @@ -334,7 +334,7 @@ swc_css_ast = { optional = true, version = "0.139.1", path swc_css_codegen = { optional = true, version = "0.149.1", path = "../swc_css_codegen" } swc_css_compat = { optional = true, version = "0.25.1", path = "../swc_css_compat" } swc_css_minifier = { optional = true, version = "0.114.1", path = "../swc_css_minifier" } -swc_css_modules = { optional = true, version = "0.27.1", path = "../swc_css_modules" } +swc_css_modules = { optional = true, version = "0.27.2", path = "../swc_css_modules" } swc_css_parser = { optional = true, version = "0.148.1", path = "../swc_css_parser" } swc_css_prefixer = { optional = true, version = "0.151.1", path = "../swc_css_prefixer" } swc_css_utils = { optional = true, version = "0.136.1", path = "../swc_css_utils/" } diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index 34b21bfd9605..0690d00075ba 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.155.1" +version = "0.155.2" [package.metadata.docs.rs] all-features = true @@ -26,7 +26,7 @@ swc_css_ast = { version = "0.139.1", path = "../swc_css_ast" } swc_css_codegen = { version = "0.149.1", path = "../swc_css_codegen" } swc_css_compat = { version = "0.25.1", path = "../swc_css_compat", optional = true } swc_css_minifier = { version = "0.114.1", path = "../swc_css_minifier", optional = true } -swc_css_modules = { version = "0.27.1", path = "../swc_css_modules", optional = true } +swc_css_modules = { version = "0.27.2", path = "../swc_css_modules", optional = true } swc_css_parser = { version = "0.148.1", path = "../swc_css_parser" } swc_css_prefixer = { version = "0.151.1", path = "../swc_css_prefixer", optional = true } swc_css_utils = { version = "0.136.1", path = "../swc_css_utils/" } diff --git a/crates/swc_css_modules/Cargo.toml b/crates/swc_css_modules/Cargo.toml index 61fe6f2f6879..ac9ef21bc052 100644 --- a/crates/swc_css_modules/Cargo.toml +++ b/crates/swc_css_modules/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_css_modules" repository = "https://github.com/swc-project/swc.git" -version = "0.27.1" +version = "0.27.2" [lib] bench = false