From 2eb4c1cabdd4a5b6ee4d689d8111055f0dba81aa Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Tue, 21 Feb 2023 05:38:59 +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 a0f6a9dfb59..4d9d8c7ed52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,9 @@ - **(bundler)** Don't panic while finding exports (#6947) ([542bb62](https://github.com/swc-project/swc/commit/542bb62ef78a999fe6c636be821427691ce0b071)) +- **(css/modules)** Fix CSS `animation` on CSS Modules (#6969) ([4771aa2](https://github.com/swc-project/swc/commit/4771aa206a6aa8c48f41eeafba12040c04358885)) + + - **(es/minifier)** Fix `toFixed`, `toPrecision`, `toExponential` and `toString` of Number (#6960) ([9382bda](https://github.com/swc-project/swc/commit/9382bda786613abf15cecb0bf3531dd68bb6166b)) diff --git a/Cargo.lock b/Cargo.lock index 7add47f5c62..357494d1bb5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3306,7 +3306,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.59.34" +version = "0.59.35" dependencies = [ "anyhow", "binding_macros", @@ -3359,7 +3359,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.149.5" +version = "0.149.6" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3470,7 +3470,7 @@ dependencies = [ [[package]] name = "swc_css_modules" -version = "0.21.5" +version = "0.21.6" dependencies = [ "rustc-hash", "serde", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index bf49c39e266..f8a530ea7e4 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.59.34" +version = "0.59.35" [package.metadata.docs.rs] features = [ "common_perf", @@ -349,7 +349,7 @@ swc_common = { optional = true, version = "0.29.31", path swc_css_ast = { optional = true, version = "0.134.4", path = "../swc_css_ast" } swc_css_codegen = { optional = true, version = "0.144.4", path = "../swc_css_codegen" } swc_css_minifier = { optional = true, version = "0.109.4", path = "../swc_css_minifier" } -swc_css_modules = { optional = true, version = "0.21.5", path = "../swc_css_modules" } +swc_css_modules = { optional = true, version = "0.21.6", path = "../swc_css_modules" } swc_css_parser = { optional = true, version = "0.143.4", path = "../swc_css_parser" } swc_css_prefixer = { optional = true, version = "0.146.4", path = "../swc_css_prefixer" } swc_css_utils = { optional = true, version = "0.131.4", path = "../swc_css_utils/" } diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index 6c4483606d0..1e3cf1cdd53 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.149.5" +version = "0.149.6" [package.metadata.docs.rs] all-features = true @@ -26,7 +26,7 @@ swc_css_ast = { version = "0.134.4", path = "../swc_css_ast" } swc_css_codegen = { version = "0.144.4", path = "../swc_css_codegen" } swc_css_compat = { version = "0.20.4", path = "../swc_css_compat", optional = true } swc_css_minifier = { version = "0.109.4", path = "../swc_css_minifier", optional = true } -swc_css_modules = { version = "0.21.5", path = "../swc_css_modules", optional = true } +swc_css_modules = { version = "0.21.6", path = "../swc_css_modules", optional = true } swc_css_parser = { version = "0.143.4", path = "../swc_css_parser" } swc_css_prefixer = { version = "0.146.4", path = "../swc_css_prefixer", optional = true } swc_css_utils = { version = "0.131.4", path = "../swc_css_utils/" } diff --git a/crates/swc_css_modules/Cargo.toml b/crates/swc_css_modules/Cargo.toml index d4877645b6c..0adefa69983 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.21.5" +version = "0.21.6" [lib] bench = false