diff --git a/CHANGELOG.md b/CHANGELOG.md index b69b8fd213a..c96fe1538f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ +- **(css/modules)** Fix `:local` and `:global` (#7600) ([f0ab5b3](https://github.com/swc-project/swc/commit/f0ab5b39f79685023cfc9529bc60e96231ad18d7)) + + - **(es/fixer)** Don't change default decls to default expr exports (#7585) ([e272545](https://github.com/swc-project/swc/commit/e2725451aa507c18222c5f66cf0a5a049c92bd0b)) diff --git a/Cargo.lock b/Cargo.lock index 21808159861..4124d30be63 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3709,7 +3709,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.79.1" +version = "0.79.2" dependencies = [ "anyhow", "binding_macros", @@ -3760,7 +3760,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.153.22" +version = "0.153.23" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3870,7 +3870,7 @@ dependencies = [ [[package]] name = "swc_css_modules" -version = "0.25.20" +version = "0.25.21" dependencies = [ "rustc-hash", "serde", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index b6ae525b2f5..786a2a91d50 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.79.1" +version = "0.79.2" [package.metadata.docs.rs] features = [ "common_perf", @@ -335,7 +335,7 @@ swc_css_ast = { optional = true, version = "0.137.16", path swc_css_codegen = { optional = true, version = "0.147.19", path = "../swc_css_codegen" } swc_css_compat = { optional = true, version = "0.23.19", path = "../swc_css_compat" } swc_css_minifier = { optional = true, version = "0.112.19", path = "../swc_css_minifier" } -swc_css_modules = { optional = true, version = "0.25.20", path = "../swc_css_modules" } +swc_css_modules = { optional = true, version = "0.25.21", path = "../swc_css_modules" } swc_css_parser = { optional = true, version = "0.146.19", path = "../swc_css_parser" } swc_css_prefixer = { optional = true, version = "0.149.21", path = "../swc_css_prefixer" } swc_css_utils = { optional = true, version = "0.134.16", path = "../swc_css_utils/" } diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index ed424ff830f..cb910effeee 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.153.22" +version = "0.153.23" [package.metadata.docs.rs] all-features = true @@ -26,7 +26,7 @@ swc_css_ast = { version = "0.137.16", path = "../swc_css_ast" } swc_css_codegen = { version = "0.147.19", path = "../swc_css_codegen" } swc_css_compat = { version = "0.23.19", path = "../swc_css_compat", optional = true } swc_css_minifier = { version = "0.112.19", path = "../swc_css_minifier", optional = true } -swc_css_modules = { version = "0.25.20", path = "../swc_css_modules", optional = true } +swc_css_modules = { version = "0.25.21", path = "../swc_css_modules", optional = true } swc_css_parser = { version = "0.146.19", path = "../swc_css_parser" } swc_css_prefixer = { version = "0.149.21", path = "../swc_css_prefixer", optional = true } swc_css_utils = { version = "0.134.16", path = "../swc_css_utils/" } diff --git a/crates/swc_css_modules/Cargo.toml b/crates/swc_css_modules/Cargo.toml index 36cbd77a1c2..7461fd928cf 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.25.20" +version = "0.25.21" [lib] bench = false