From 2dbff698b8d3996be71c11eef9691f3bddbc9600 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Sat, 22 Oct 2022 22:52:58 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ Cargo.lock | 22 +++++++++++----------- crates/swc_core/Cargo.toml | 12 ++++++------ crates/swc_css/Cargo.toml | 14 +++++++------- crates/swc_css_codegen/Cargo.toml | 4 ++-- crates/swc_css_compat/Cargo.toml | 6 +++--- crates/swc_css_lints/Cargo.toml | 4 ++-- crates/swc_css_minifier/Cargo.toml | 6 +++--- crates/swc_css_modules/Cargo.toml | 8 ++++---- crates/swc_css_parser/Cargo.toml | 2 +- crates/swc_css_prefixer/Cargo.toml | 6 +++--- crates/swc_html/Cargo.toml | 4 ++-- crates/swc_html_minifier/Cargo.toml | 8 ++++---- 13 files changed, 51 insertions(+), 48 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d38fb013899..94ab3e4479bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,9 @@ - **(css/parser)** Use new approach for parsing invalid tokens (#6224) ([ac619e8](https://github.com/swc-project/swc/commit/ac619e88bf68018ef9b4faef52ed3849549e6fd5)) + +- **(css/parser)** Fix parsing of declarations (#6234) ([e4fe840](https://github.com/swc-project/swc/commit/e4fe8403d790911c617754358630ad56afd14a89)) + ### Testing diff --git a/Cargo.lock b/Cargo.lock index be687fa1c66f..0e4656fb40e1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3168,7 +3168,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.40.11" +version = "0.40.12" dependencies = [ "binding_macros", "once_cell", @@ -3217,7 +3217,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.137.4" +version = "0.137.5" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3245,7 +3245,7 @@ dependencies = [ [[package]] name = "swc_css_codegen" -version = "0.134.3" +version = "0.134.4" dependencies = [ "auto_impl", "bitflags", @@ -3274,7 +3274,7 @@ dependencies = [ [[package]] name = "swc_css_compat" -version = "0.9.3" +version = "0.9.4" dependencies = [ "once_cell", "serde", @@ -3291,7 +3291,7 @@ dependencies = [ [[package]] name = "swc_css_lints" -version = "0.43.3" +version = "0.43.4" dependencies = [ "auto_impl", "parking_lot", @@ -3310,7 +3310,7 @@ dependencies = [ [[package]] name = "swc_css_minifier" -version = "0.99.4" +version = "0.99.5" dependencies = [ "criterion", "serde", @@ -3327,7 +3327,7 @@ dependencies = [ [[package]] name = "swc_css_modules" -version = "0.10.3" +version = "0.10.4" dependencies = [ "rustc-hash", "serde", @@ -3344,7 +3344,7 @@ dependencies = [ [[package]] name = "swc_css_parser" -version = "0.133.3" +version = "0.133.4" dependencies = [ "bitflags", "criterion", @@ -3361,7 +3361,7 @@ dependencies = [ [[package]] name = "swc_css_prefixer" -version = "0.135.3" +version = "0.135.4" dependencies = [ "once_cell", "preset_env_base", @@ -4045,7 +4045,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.93.8" +version = "0.93.9" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -4097,7 +4097,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.90.8" +version = "0.90.9" dependencies = [ "criterion", "once_cell", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 2e57200d2bc3..ab4fa1535e5b 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.40.11" +version = "0.40.12" [package.metadata.docs.rs] features = [ "common_perf", @@ -324,10 +324,10 @@ swc_bundler = { optional = true, version = "0.192.45", path swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" } swc_common = { optional = true, version = "0.29.10", path = "../swc_common" } swc_css_ast = { optional = true, version = "0.124.0", path = "../swc_css_ast" } -swc_css_codegen = { optional = true, version = "0.134.3", path = "../swc_css_codegen" } -swc_css_minifier = { optional = true, version = "0.99.4", path = "../swc_css_minifier" } -swc_css_parser = { optional = true, version = "0.133.3", path = "../swc_css_parser" } -swc_css_prefixer = { optional = true, version = "0.135.3", path = "../swc_css_prefixer" } +swc_css_codegen = { optional = true, version = "0.134.4", path = "../swc_css_codegen" } +swc_css_minifier = { optional = true, version = "0.99.5", path = "../swc_css_minifier" } +swc_css_parser = { optional = true, version = "0.133.4", path = "../swc_css_parser" } +swc_css_prefixer = { optional = true, version = "0.135.4", path = "../swc_css_prefixer" } swc_css_utils = { optional = true, version = "0.121.0", path = "../swc_css_utils/" } swc_css_visit = { optional = true, version = "0.123.0", path = "../swc_css_visit" } swc_ecma_ast = { optional = true, version = "0.94.14", path = "../swc_ecma_ast" } @@ -355,7 +355,7 @@ swc_plugin_proxy = { optional = true, version = "0.22.14", path swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" } testing = { optional = true, version = "0.31.10", path = "../testing" } # TODO: eventually swc_plugin_runner needs to remove default features -swc_css_compat = { version = "0.9.3", path = "../swc_css_compat", optional = true } +swc_css_compat = { version = "0.9.4", path = "../swc_css_compat", optional = true } swc_plugin_runner = { optional = true, version = "0.77.24", path = "../swc_plugin_runner", default-features = false } [build-dependencies] diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index 945d716a3e31..f2c84a41ba3b 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.137.4" +version = "0.137.5" [package.metadata.docs.rs] all-features = true @@ -23,11 +23,11 @@ prefixer = ["swc_css_prefixer"] [dependencies] swc_css_ast = {version = "0.124.0", path = "../swc_css_ast"} -swc_css_codegen = {version = "0.134.3", path = "../swc_css_codegen"} -swc_css_compat = {version = "0.9.3", path = "../swc_css_compat", optional = true} -swc_css_minifier = {version = "0.99.4", path = "../swc_css_minifier", optional = true} -swc_css_modules = {version = "0.10.3", path = "../swc_css_modules", optional = true} -swc_css_parser = {version = "0.133.3", path = "../swc_css_parser"} -swc_css_prefixer = {version = "0.135.3", path = "../swc_css_prefixer", optional = true} +swc_css_codegen = {version = "0.134.4", path = "../swc_css_codegen"} +swc_css_compat = {version = "0.9.4", path = "../swc_css_compat", optional = true} +swc_css_minifier = {version = "0.99.5", path = "../swc_css_minifier", optional = true} +swc_css_modules = {version = "0.10.4", path = "../swc_css_modules", optional = true} +swc_css_parser = {version = "0.133.4", path = "../swc_css_parser"} +swc_css_prefixer = {version = "0.135.4", path = "../swc_css_prefixer", optional = true} swc_css_utils = {version = "0.121.0", path = "../swc_css_utils/"} swc_css_visit = {version = "0.123.0", path = "../swc_css_visit"} diff --git a/crates/swc_css_codegen/Cargo.toml b/crates/swc_css_codegen/Cargo.toml index 4357a24768ea..e1b11297f854 100644 --- a/crates/swc_css_codegen/Cargo.toml +++ b/crates/swc_css_codegen/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_css_codegen" repository = "https://github.com/swc-project/swc.git" -version = "0.134.3" +version = "0.134.4" [lib] bench = false @@ -27,6 +27,6 @@ swc_css_utils = { version = "0.121.0", path = "../swc_css_utils" } swc_common = { version = "0.29.10", path = "../swc_common", features = [ "sourcemap", ] } -swc_css_parser = { version = "0.133.3", path = "../swc_css_parser" } +swc_css_parser = { version = "0.133.4", path = "../swc_css_parser" } swc_css_visit = { version = "0.123.0", path = "../swc_css_visit" } testing = { version = "0.31.10", path = "../testing" } diff --git a/crates/swc_css_compat/Cargo.toml b/crates/swc_css_compat/Cargo.toml index 77e60714c642..80775c045edc 100644 --- a/crates/swc_css_compat/Cargo.toml +++ b/crates/swc_css_compat/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"] license = "Apache-2.0" name = "swc_css_compat" repository = "https://github.com/swc-project/swc.git" -version = "0.9.3" +version = "0.9.4" [lib] bench = false @@ -23,6 +23,6 @@ swc_css_utils = {version = "0.121.0", path = "../swc_css_utils/"} swc_css_visit = {version = "0.123.0", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.134.3", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.133.3", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.134.4", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.133.4", path = "../swc_css_parser"} testing = {version = "0.31.10", path = "../testing"} diff --git a/crates/swc_css_lints/Cargo.toml b/crates/swc_css_lints/Cargo.toml index ec2987b13eaa..684726254346 100644 --- a/crates/swc_css_lints/Cargo.toml +++ b/crates/swc_css_lints/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_css_lints" repository = "https://github.com/swc-project/swc.git" -version = "0.43.3" +version = "0.43.4" [lib] bench = false @@ -26,5 +26,5 @@ thiserror = "1.0.30" [dev-dependencies] serde_json = "1.0.79" -swc_css_parser = { version = "0.133.3", path = "../swc_css_parser" } +swc_css_parser = { version = "0.133.4", path = "../swc_css_parser" } testing = { version = "0.31.10", path = "../testing" } diff --git a/crates/swc_css_minifier/Cargo.toml b/crates/swc_css_minifier/Cargo.toml index f8b7db7c8c3b..1777ea98630e 100644 --- a/crates/swc_css_minifier/Cargo.toml +++ b/crates/swc_css_minifier/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_css_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.99.4" +version = "0.99.5" [lib] bench = false @@ -22,8 +22,8 @@ swc_css_visit = { version = "0.123.0", path = "../swc_css_visit" } [dev-dependencies] criterion = "0.3" -swc_css_codegen = { version = "0.134.3", path = "../swc_css_codegen" } -swc_css_parser = { version = "0.133.3", path = "../swc_css_parser" } +swc_css_codegen = { version = "0.134.4", path = "../swc_css_codegen" } +swc_css_parser = { version = "0.133.4", path = "../swc_css_parser" } swc_node_base = { version = "0.5.7", path = "../swc_node_base" } testing = { version = "0.31.10", path = "../testing" } diff --git a/crates/swc_css_modules/Cargo.toml b/crates/swc_css_modules/Cargo.toml index 5e8fb35da3bd..2026bfdc9cb0 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.10.3" +version = "0.10.4" [lib] bench = false @@ -20,11 +20,11 @@ serde = {version = "1", features = ["derive"]} swc_atoms = {version = "0.4.23", path = "../swc_atoms"} swc_common = {version = "0.29.10", path = "../swc_common"} swc_css_ast = {version = "0.124.0", path = "../swc_css_ast"} -swc_css_codegen = {version = "0.134.3", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.133.3", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.134.4", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.133.4", path = "../swc_css_parser"} swc_css_visit = {version = "0.123.0", path = "../swc_css_visit"} [dev-dependencies] serde_json = "1" -swc_css_compat = {version = "0.9.3", path = "../swc_css_compat"} +swc_css_compat = {version = "0.9.4", path = "../swc_css_compat"} testing = {version = "0.31.10", path = "../testing"} diff --git a/crates/swc_css_parser/Cargo.toml b/crates/swc_css_parser/Cargo.toml index 84144f9947fc..05ad01a7ad60 100644 --- a/crates/swc_css_parser/Cargo.toml +++ b/crates/swc_css_parser/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_css_parser" repository = "https://github.com/swc-project/swc.git" -version = "0.133.3" +version = "0.133.4" [lib] bench = false diff --git a/crates/swc_css_prefixer/Cargo.toml b/crates/swc_css_prefixer/Cargo.toml index 821e55232b1e..de475a7a8377 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.135.3" +version = "0.135.4" [lib] bench = false @@ -24,6 +24,6 @@ swc_css_utils = {version = "0.121.0", path = "../swc_css_utils/"} swc_css_visit = {version = "0.123.0", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.134.3", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.133.3", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.134.4", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.133.4", path = "../swc_css_parser"} testing = {version = "0.31.10", path = "../testing"} diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index 9a6055ec7d43..e5d9db76141f 100644 --- a/crates/swc_html/Cargo.toml +++ b/crates/swc_html/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_html" repository = "https://github.com/swc-project/swc.git" -version = "0.93.8" +version = "0.93.9" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.28.1", path = "../swc_html_ast"} swc_html_codegen = {version = "0.37.4", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.90.8", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.90.9", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.34.4", path = "../swc_html_parser"} swc_html_visit = {version = "0.28.1", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index f99280cee346..2b60b6648861 100644 --- a/crates/swc_html_minifier/Cargo.toml +++ b/crates/swc_html_minifier/Cargo.toml @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"] license = "Apache-2.0" name = "swc_html_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.90.8" +version = "0.90.9" [lib] bench = false @@ -23,9 +23,9 @@ swc_atoms = { version = "0.4.23", path = "../swc_atoms" } swc_cached = { version = "0.3.15", path = "../swc_cached" } swc_common = { version = "0.29.10", path = "../swc_common" } swc_css_ast = { version = "0.124.0", path = "../swc_css_ast" } -swc_css_codegen = { version = "0.134.3", path = "../swc_css_codegen" } -swc_css_minifier = { version = "0.99.4", path = "../swc_css_minifier" } -swc_css_parser = { version = "0.133.3", path = "../swc_css_parser" } +swc_css_codegen = { version = "0.134.4", path = "../swc_css_codegen" } +swc_css_minifier = { version = "0.99.5", path = "../swc_css_minifier" } +swc_css_parser = { version = "0.133.4", path = "../swc_css_parser" } swc_ecma_ast = { version = "0.94.14", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.127.23", path = "../swc_ecma_codegen" } swc_ecma_minifier = { version = "0.159.45", path = "../swc_ecma_minifier" }