From 8a9492661d063627b9be442d5f61499b9c7ac07c Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Tue, 26 Jul 2022 02:35:58 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ Cargo.lock | 22 +++++++++++----------- crates/swc_css/Cargo.toml | 14 +++++++------- crates/swc_css_ast/Cargo.toml | 2 +- crates/swc_css_codegen/Cargo.toml | 8 ++++---- crates/swc_css_lints/Cargo.toml | 8 ++++---- crates/swc_css_minifier/Cargo.toml | 12 ++++++------ crates/swc_css_parser/Cargo.toml | 6 +++--- crates/swc_css_prefixer/Cargo.toml | 12 ++++++------ crates/swc_css_utils/Cargo.toml | 6 +++--- crates/swc_css_visit/Cargo.toml | 4 ++-- crates/swc_html/Cargo.toml | 4 ++-- crates/swc_html_minifier/Cargo.toml | 10 +++++----- 13 files changed, 57 insertions(+), 54 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb8f54c3252..52dde1c5081 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ +- **(css)** Fix parsing of `layer` (#5290) ([83651c2](https://github.com/swc-project/swc/commit/83651c297d4e6b03809b96a87ce1c59f158e28ff)) + + - **(es/compat)** Preserve orders of `import`s and `export`s (#5249) ([2010409](https://github.com/swc-project/swc/commit/2010409bac0f73c5f4d04f6735db6142f621701a)) diff --git a/Cargo.lock b/Cargo.lock index 410d10d553c..756d06649d6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3147,7 +3147,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.114.0" +version = "0.115.0" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3159,7 +3159,7 @@ dependencies = [ [[package]] name = "swc_css_ast" -version = "0.101.0" +version = "0.102.0" dependencies = [ "is-macro", "serde", @@ -3170,7 +3170,7 @@ dependencies = [ [[package]] name = "swc_css_codegen" -version = "0.111.0" +version = "0.112.0" dependencies = [ "auto_impl", "bitflags", @@ -3198,7 +3198,7 @@ dependencies = [ [[package]] name = "swc_css_lints" -version = "0.20.0" +version = "0.21.0" dependencies = [ "auto_impl", "parking_lot", @@ -3217,7 +3217,7 @@ dependencies = [ [[package]] name = "swc_css_minifier" -version = "0.76.1" +version = "0.77.0" dependencies = [ "serde", "swc_atoms", @@ -3232,7 +3232,7 @@ dependencies = [ [[package]] name = "swc_css_parser" -version = "0.110.0" +version = "0.111.0" dependencies = [ "bitflags", "criterion", @@ -3249,7 +3249,7 @@ dependencies = [ [[package]] name = "swc_css_prefixer" -version = "0.111.0" +version = "0.112.0" dependencies = [ "once_cell", "preset_env_base", @@ -3267,7 +3267,7 @@ dependencies = [ [[package]] name = "swc_css_utils" -version = "0.98.0" +version = "0.99.0" dependencies = [ "once_cell", "serde", @@ -3280,7 +3280,7 @@ dependencies = [ [[package]] name = "swc_css_visit" -version = "0.100.0" +version = "0.101.0" dependencies = [ "serde", "swc_atoms", @@ -3932,7 +3932,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.52.0" +version = "0.53.0" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -3982,7 +3982,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.49.0" +version = "0.50.0" dependencies = [ "once_cell", "serde", diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index d00ab51d764..be17f2ae9a7 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.114.0" +version = "0.115.0" [package.metadata.docs.rs] all-features = true @@ -19,9 +19,9 @@ bench = false minifier = ["swc_css_minifier"] [dependencies] -swc_css_ast = {version = "0.101.0", path = "../swc_css_ast"} -swc_css_codegen = {version = "0.111.0", path = "../swc_css_codegen"} -swc_css_minifier = {version = "0.76.0", path = "../swc_css_minifier", optional = true} -swc_css_parser = {version = "0.110.0", path = "../swc_css_parser"} -swc_css_utils = {version = "0.98.0", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.100.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.102.0", path = "../swc_css_ast"} +swc_css_codegen = {version = "0.112.0", path = "../swc_css_codegen"} +swc_css_minifier = {version = "0.77.0", path = "../swc_css_minifier", optional = true} +swc_css_parser = {version = "0.111.0", path = "../swc_css_parser"} +swc_css_utils = {version = "0.99.0", path = "../swc_css_utils/"} +swc_css_visit = {version = "0.101.0", path = "../swc_css_visit"} diff --git a/crates/swc_css_ast/Cargo.toml b/crates/swc_css_ast/Cargo.toml index afedb296c32..3f385a08d76 100644 --- a/crates/swc_css_ast/Cargo.toml +++ b/crates/swc_css_ast/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_ast" repository = "https://github.com/swc-project/swc.git" -version = "0.101.0" +version = "0.102.0" [lib] bench = false diff --git a/crates/swc_css_codegen/Cargo.toml b/crates/swc_css_codegen/Cargo.toml index 6e9107ff35d..746d7968552 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.111.0" +version = "0.112.0" [lib] bench = false @@ -19,13 +19,13 @@ rustc-hash = "1.1.0" serde = "1.0.127" swc_atoms = { version = "0.3.0", path = "../swc_atoms" } swc_common = { version = "0.25.0", path = "../swc_common" } -swc_css_ast = { version = "0.101.0", path = "../swc_css_ast" } +swc_css_ast = { version = "0.102.0", path = "../swc_css_ast" } swc_css_codegen_macros = { version = "0.2.0", path = "../swc_css_codegen_macros" } [dev-dependencies] swc_common = { version = "0.25.0", path = "../swc_common", features = [ "sourcemap", ] } -swc_css_parser = { version = "0.110.0", path = "../swc_css_parser" } -swc_css_visit = { version = "0.100.0", path = "../swc_css_visit" } +swc_css_parser = { version = "0.111.0", path = "../swc_css_parser" } +swc_css_visit = { version = "0.101.0", path = "../swc_css_visit" } testing = { version = "0.27.0", path = "../testing" } diff --git a/crates/swc_css_lints/Cargo.toml b/crates/swc_css_lints/Cargo.toml index eafb3f60405..53534e1cc47 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.20.0" +version = "0.21.0" [lib] bench = false @@ -20,11 +20,11 @@ serde = {version = "1.0.133", features = ["derive"]} swc_atoms = {version = "0.3.0", path = "../swc_atoms"} swc_cached = {version = "0.2.0", path = "../swc_cached"} swc_common = { version = "0.25.0", path = "../swc_common"} -swc_css_ast = {version = "0.101.0", path = "../swc_css_ast"} -swc_css_visit = {version = "0.100.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.102.0", path = "../swc_css_ast"} +swc_css_visit = {version = "0.101.0", path = "../swc_css_visit"} thiserror = "1.0.30" [dev-dependencies] serde_json = "1.0.79" -swc_css_parser = {version = "0.110.0", path = "../swc_css_parser"} +swc_css_parser = {version = "0.111.0", path = "../swc_css_parser"} testing = {version = "0.27.0", path = "../testing"} diff --git a/crates/swc_css_minifier/Cargo.toml b/crates/swc_css_minifier/Cargo.toml index 3c6606a79d2..0f947261418 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.76.1" +version = "0.77.0" [lib] bench = false @@ -16,11 +16,11 @@ bench = false serde = "1.0.118" swc_atoms = {version = "0.3.0", path = "../swc_atoms"} swc_common = { version = "0.25.0", path = "../swc_common"} -swc_css_ast = {version = "0.101.0", path = "../swc_css_ast"} -swc_css_utils = { version = "0.98.0", path = "../swc_css_utils/" } -swc_css_visit = {version = "0.100.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.102.0", path = "../swc_css_ast"} +swc_css_utils = { version = "0.99.0", path = "../swc_css_utils/" } +swc_css_visit = {version = "0.101.0", path = "../swc_css_visit"} [dev-dependencies] -swc_css_codegen = {version = "0.111.0", path = "../swc_css_codegen"} -swc_css_parser = {version = "0.110.0", path = "../swc_css_parser"} +swc_css_codegen = {version = "0.112.0", path = "../swc_css_codegen"} +swc_css_parser = {version = "0.111.0", path = "../swc_css_parser"} testing = {version = "0.27.0", path = "../testing"} diff --git a/crates/swc_css_parser/Cargo.toml b/crates/swc_css_parser/Cargo.toml index a4d0db4591f..4f8dbf4537d 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.110.0" +version = "0.111.0" [lib] bench = false @@ -21,12 +21,12 @@ lexical = "6.1.0" serde = "1.0.127" swc_atoms = { version = "0.3.0", path = "../swc_atoms" } swc_common = { version = "0.25.0", path = "../swc_common" } -swc_css_ast = { version = "0.101.0", path = "../swc_css_ast" } +swc_css_ast = { version = "0.102.0", path = "../swc_css_ast" } [dev-dependencies] criterion = "0.3" serde_json = "1.0.66" -swc_css_visit = { version = "0.100.0", path = "../swc_css_visit" } +swc_css_visit = { version = "0.101.0", path = "../swc_css_visit" } swc_node_base = { version = "0.5.0", path = "../swc_node_base" } testing = { version = "0.27.0", path = "../testing" } diff --git a/crates/swc_css_prefixer/Cargo.toml b/crates/swc_css_prefixer/Cargo.toml index c2b50d59938..9397089186c 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"] license = "Apache-2.0" name = "swc_css_prefixer" repository = "https://github.com/swc-project/swc.git" -version = "0.111.0" +version = "0.112.0" [lib] bench = false @@ -19,11 +19,11 @@ serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.61" swc_atoms = { version = "0.3.0", path = "../swc_atoms" } swc_common = { version = "0.25.0", path = "../swc_common" } -swc_css_ast = { version = "0.101.0", path = "../swc_css_ast" } -swc_css_utils = { version = "0.98.0", path = "../swc_css_utils/" } -swc_css_visit = { version = "0.100.0", path = "../swc_css_visit" } +swc_css_ast = { version = "0.102.0", path = "../swc_css_ast" } +swc_css_utils = { version = "0.99.0", path = "../swc_css_utils/" } +swc_css_visit = { version = "0.101.0", path = "../swc_css_visit" } [dev-dependencies] -swc_css_codegen = { version = "0.111.0", path = "../swc_css_codegen" } -swc_css_parser = { version = "0.110.0", path = "../swc_css_parser" } +swc_css_codegen = { version = "0.112.0", path = "../swc_css_codegen" } +swc_css_parser = { version = "0.111.0", path = "../swc_css_parser" } testing = { version = "0.27.0", path = "../testing" } diff --git a/crates/swc_css_utils/Cargo.toml b/crates/swc_css_utils/Cargo.toml index f7c165f0624..fcd51931d55 100644 --- a/crates/swc_css_utils/Cargo.toml +++ b/crates/swc_css_utils/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json"] license = "Apache-2.0" name = "swc_css_utils" repository = "https://github.com/swc-project/swc.git" -version = "0.98.0" +version = "0.99.0" [lib] bench = false @@ -18,5 +18,5 @@ serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.61" swc_atoms = { version = "0.3.0", path = "../swc_atoms" } swc_common = { version = "0.25.0", path = "../swc_common" } -swc_css_ast = { version = "0.101.0", path = "../swc_css_ast" } -swc_css_visit = { version = "0.100.0", path = "../swc_css_visit" } +swc_css_ast = { version = "0.102.0", path = "../swc_css_ast" } +swc_css_visit = { version = "0.101.0", path = "../swc_css_visit" } diff --git a/crates/swc_css_visit/Cargo.toml b/crates/swc_css_visit/Cargo.toml index 1a451dd48d2..03caaca2e2f 100644 --- a/crates/swc_css_visit/Cargo.toml +++ b/crates/swc_css_visit/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_visit" repository = "https://github.com/swc-project/swc.git" -version = "0.100.0" +version = "0.101.0" [package.metadata.docs.rs] all-features = true @@ -23,5 +23,5 @@ path = [] serde = {version = "1", optional = true} swc_atoms = {version = "0.3.0", path = "../swc_atoms"} swc_common = {version = "0.25.0", path = "../swc_common"} -swc_css_ast = {version = "0.101.0", path = "../swc_css_ast"} +swc_css_ast = {version = "0.102.0", path = "../swc_css_ast"} swc_visit = {version = "0.5.1", path = "../swc_visit"} diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index ca4af43480f..139f03f1d33 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.52.0" +version = "0.53.0" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.22.0", path = "../swc_html_ast"} swc_html_codegen = {version = "0.30.0", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.49.0", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.50.0", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.27.0", path = "../swc_html_parser"} swc_html_visit = {version = "0.22.0", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 5c2b777dc5f..f89f410bdf9 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.49.0" +version = "0.50.0" [lib] bench = false @@ -22,10 +22,10 @@ serde_json = "1.0.61" swc_atoms = { version = "0.3.0", path = "../swc_atoms" } swc_cached = { version = "0.2.0", path = "../swc_cached" } swc_common = { version = "0.25.0", path = "../swc_common" } -swc_css_ast = { version = "0.101.0", path = "../swc_css_ast" } -swc_css_codegen = { version = "0.111.0", path = "../swc_css_codegen" } -swc_css_parser = { version = "0.110.0", path = "../swc_css_parser" } -swc_css_minifier = { version = "0.76.0", path = "../swc_css_minifier" } +swc_css_ast = { version = "0.102.0", path = "../swc_css_ast" } +swc_css_codegen = { version = "0.112.0", path = "../swc_css_codegen" } +swc_css_parser = { version = "0.111.0", path = "../swc_css_parser" } +swc_css_minifier = { version = "0.77.0", path = "../swc_css_minifier" } swc_ecma_ast = { version = "0.88.0", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.119.0", path = "../swc_ecma_codegen" } swc_ecma_parser = { version = "0.115.0", path = "../swc_ecma_parser" }