From 213d8b9ab5c7c1ed7e33440d95733bed509b86bb Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Mon, 29 Aug 2022 15:29:16 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 6 ++++++ Cargo.lock | 24 ++++++++++++------------ crates/swc_core/Cargo.toml | 6 +++--- 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 +++++----- 14 files changed, 64 insertions(+), 58 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 191a9edf493..a5fa0486112 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,6 +38,9 @@ +- **(css)** Support forgiving selector (#5539) ([e2aca46](https://github.com/swc-project/swc/commit/e2aca468897a57401bee6a604aeeddb91ea7b8e9)) + + - **(es)** Improve APIs for plugin authors (#5632) ([e8edb67](https://github.com/swc-project/swc/commit/e8edb67def8bf88dda610a2d8cc405ad36cd5b52)) @@ -46,6 +49,9 @@ - **(es/parser)** Handle `async` in `for...of` (#5646) ([0f0d1db](https://github.com/swc-project/swc/commit/0f0d1db3013b5dda88e4e73bfd335c8f7e3ad840)) +### Miscellaneous Tasks +- **general**: Update download count image url ([7c554fc](https://github.com/swc-project/swc/commit/7c554fcc61b5b1123f6838f65e0a2a23228174c4)) + ### Performance diff --git a/Cargo.lock b/Cargo.lock index f3e110e3f00..d4de41fa39e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3083,7 +3083,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.15.0" +version = "0.16.0" dependencies = [ "binding_macros", "once_cell", @@ -3120,7 +3120,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.121.0" +version = "0.122.0" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3132,7 +3132,7 @@ dependencies = [ [[package]] name = "swc_css_ast" -version = "0.108.1" +version = "0.109.0" dependencies = [ "bytecheck", "is-macro", @@ -3145,7 +3145,7 @@ dependencies = [ [[package]] name = "swc_css_codegen" -version = "0.118.1" +version = "0.119.0" dependencies = [ "auto_impl", "bitflags", @@ -3173,7 +3173,7 @@ dependencies = [ [[package]] name = "swc_css_lints" -version = "0.27.1" +version = "0.28.0" dependencies = [ "auto_impl", "parking_lot", @@ -3192,7 +3192,7 @@ dependencies = [ [[package]] name = "swc_css_minifier" -version = "0.83.1" +version = "0.84.0" dependencies = [ "serde", "swc_atoms", @@ -3207,7 +3207,7 @@ dependencies = [ [[package]] name = "swc_css_parser" -version = "0.117.1" +version = "0.118.0" dependencies = [ "bitflags", "criterion", @@ -3224,7 +3224,7 @@ dependencies = [ [[package]] name = "swc_css_prefixer" -version = "0.119.1" +version = "0.120.0" dependencies = [ "once_cell", "preset_env_base", @@ -3242,7 +3242,7 @@ dependencies = [ [[package]] name = "swc_css_utils" -version = "0.105.1" +version = "0.106.0" dependencies = [ "once_cell", "serde", @@ -3255,7 +3255,7 @@ dependencies = [ [[package]] name = "swc_css_visit" -version = "0.107.0" +version = "0.108.0" dependencies = [ "serde", "swc_atoms", @@ -3906,7 +3906,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.66.0" +version = "0.67.0" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -3958,7 +3958,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.63.0" +version = "0.64.0" dependencies = [ "once_cell", "serde", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index a4404f3b5b3..182e8f58330 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.15.0" +version = "0.16.0" [package.metadata.docs.rs] features = [ "common_perf", @@ -266,8 +266,8 @@ swc_atoms = { optional = true, version = "0.4.8", path = "../s swc_bundler = { optional = true, version = "0.183.0", path = "../swc_bundler" } swc_cached = { optional = true, version = "0.3.5", path = "../swc_cached" } swc_common = { optional = true, version = "0.27.12", path = "../swc_common" } -swc_css = { optional = true, version = "0.121.0", path = "../swc_css" } -swc_css_prefixer = { optional = true, version = "0.119.1", path = "../swc_css_prefixer" } +swc_css = { optional = true, version = "0.122.0", path = "../swc_css" } +swc_css_prefixer = { optional = true, version = "0.120.0", path = "../swc_css_prefixer" } swc_ecma_ast = { optional = true, version = "0.90.10", path = "../swc_ecma_ast" } swc_ecma_codegen = { optional = true, version = "0.123.0", path = "../swc_ecma_codegen" } swc_ecma_loader = { optional = true, version = "0.39.4", path = "../swc_ecma_loader" } diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index 67fbde5a576..5fa88b0f747 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.121.0" +version = "0.122.0" [package.metadata.docs.rs] all-features = true @@ -19,9 +19,9 @@ bench = false minifier = ["swc_css_minifier"] [dependencies] -swc_css_ast = {version = "0.108.0", path = "../swc_css_ast"} -swc_css_codegen = {version = "0.118.0", path = "../swc_css_codegen"} -swc_css_minifier = {version = "0.83.0", path = "../swc_css_minifier", optional = true} -swc_css_parser = {version = "0.117.0", path = "../swc_css_parser"} -swc_css_utils = {version = "0.105.0", path = "../swc_css_utils/"} -swc_css_visit = {version = "0.107.0", path = "../swc_css_visit"} +swc_css_ast = {version = "0.109.0", path = "../swc_css_ast"} +swc_css_codegen = {version = "0.119.0", path = "../swc_css_codegen"} +swc_css_minifier = {version = "0.84.0", path = "../swc_css_minifier", optional = true} +swc_css_parser = {version = "0.118.0", path = "../swc_css_parser"} +swc_css_utils = {version = "0.106.0", path = "../swc_css_utils/"} +swc_css_visit = {version = "0.108.0", path = "../swc_css_visit"} diff --git a/crates/swc_css_ast/Cargo.toml b/crates/swc_css_ast/Cargo.toml index cd655eb4132..d1d28d8011f 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.108.1" +version = "0.109.0" [lib] bench = false diff --git a/crates/swc_css_codegen/Cargo.toml b/crates/swc_css_codegen/Cargo.toml index f84e4f8fe5c..91968708f29 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.118.1" +version = "0.119.0" [lib] bench = false @@ -19,13 +19,13 @@ rustc-hash = "1.1.0" serde = "1.0.127" swc_atoms = { version = "0.4.5", path = "../swc_atoms" } swc_common = { version = "0.27.13", path = "../swc_common" } -swc_css_ast = { version = "0.108.0", path = "../swc_css_ast" } +swc_css_ast = { version = "0.109.0", path = "../swc_css_ast" } swc_css_codegen_macros = { version = "0.2.0", path = "../swc_css_codegen_macros" } [dev-dependencies] swc_common = { version = "0.27.13", path = "../swc_common", features = [ "sourcemap", ] } -swc_css_parser = { version = "0.117.0", path = "../swc_css_parser" } -swc_css_visit = { version = "0.107.0", path = "../swc_css_visit" } +swc_css_parser = { version = "0.118.0", path = "../swc_css_parser" } +swc_css_visit = { version = "0.108.0", path = "../swc_css_visit" } testing = { version = "0.29.4", path = "../testing" } diff --git a/crates/swc_css_lints/Cargo.toml b/crates/swc_css_lints/Cargo.toml index 54d29bcc6c2..f80b4110aad 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.27.1" +version = "0.28.0" [lib] bench = false @@ -20,11 +20,11 @@ serde = { version = "1.0.133", features = ["derive"] } swc_atoms = { version = "0.4.5", path = "../swc_atoms" } swc_cached = { version = "0.3.5", path = "../swc_cached" } swc_common = { version = "0.27.13", path = "../swc_common" } -swc_css_ast = { version = "0.108.0", path = "../swc_css_ast" } -swc_css_visit = { version = "0.107.0", path = "../swc_css_visit" } +swc_css_ast = { version = "0.109.0", path = "../swc_css_ast" } +swc_css_visit = { version = "0.108.0", path = "../swc_css_visit" } thiserror = "1.0.30" [dev-dependencies] serde_json = "1.0.79" -swc_css_parser = { version = "0.117.0", path = "../swc_css_parser" } +swc_css_parser = { version = "0.118.0", path = "../swc_css_parser" } testing = { version = "0.29.4", path = "../testing" } diff --git a/crates/swc_css_minifier/Cargo.toml b/crates/swc_css_minifier/Cargo.toml index 6f94d76fa6c..df0190cdbc4 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.83.1" +version = "0.84.0" [lib] bench = false @@ -16,11 +16,11 @@ bench = false serde = "1.0.118" swc_atoms = { version = "0.4.5", path = "../swc_atoms" } swc_common = { version = "0.27.13", path = "../swc_common" } -swc_css_ast = { version = "0.108.0", path = "../swc_css_ast" } -swc_css_utils = { version = "0.105.0", path = "../swc_css_utils/" } -swc_css_visit = { version = "0.107.0", path = "../swc_css_visit" } +swc_css_ast = { version = "0.109.0", path = "../swc_css_ast" } +swc_css_utils = { version = "0.106.0", path = "../swc_css_utils/" } +swc_css_visit = { version = "0.108.0", path = "../swc_css_visit" } [dev-dependencies] -swc_css_codegen = { version = "0.118.0", path = "../swc_css_codegen" } -swc_css_parser = { version = "0.117.0", path = "../swc_css_parser" } +swc_css_codegen = { version = "0.119.0", path = "../swc_css_codegen" } +swc_css_parser = { version = "0.118.0", path = "../swc_css_parser" } testing = { version = "0.29.4", path = "../testing" } diff --git a/crates/swc_css_parser/Cargo.toml b/crates/swc_css_parser/Cargo.toml index 706c7350910..727591776cf 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.117.1" +version = "0.118.0" [lib] bench = false @@ -21,12 +21,12 @@ lexical = "6.1.0" serde = "1.0.127" swc_atoms = { version = "0.4.5", path = "../swc_atoms" } swc_common = { version = "0.27.13", path = "../swc_common" } -swc_css_ast = { version = "0.108.0", path = "../swc_css_ast" } +swc_css_ast = { version = "0.109.0", path = "../swc_css_ast" } [dev-dependencies] criterion = "0.3" serde_json = "1.0.66" -swc_css_visit = { version = "0.107.0", path = "../swc_css_visit" } +swc_css_visit = { version = "0.108.0", path = "../swc_css_visit" } swc_node_base = { version = "0.5.0", path = "../swc_node_base" } testing = { version = "0.29.4", path = "../testing" } diff --git a/crates/swc_css_prefixer/Cargo.toml b/crates/swc_css_prefixer/Cargo.toml index 24f131aca58..ca0a37f3e94 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.119.1" +version = "0.120.0" [lib] bench = false @@ -19,11 +19,11 @@ serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.61" swc_atoms = { version = "0.4.5", path = "../swc_atoms" } swc_common = { version = "0.27.13", path = "../swc_common" } -swc_css_ast = { version = "0.108.0", path = "../swc_css_ast" } -swc_css_utils = { version = "0.105.0", path = "../swc_css_utils/" } -swc_css_visit = { version = "0.107.0", path = "../swc_css_visit" } +swc_css_ast = { version = "0.109.0", path = "../swc_css_ast" } +swc_css_utils = { version = "0.106.0", path = "../swc_css_utils/" } +swc_css_visit = { version = "0.108.0", path = "../swc_css_visit" } [dev-dependencies] -swc_css_codegen = { version = "0.118.0", path = "../swc_css_codegen" } -swc_css_parser = { version = "0.117.0", path = "../swc_css_parser" } +swc_css_codegen = { version = "0.119.0", path = "../swc_css_codegen" } +swc_css_parser = { version = "0.118.0", path = "../swc_css_parser" } testing = { version = "0.29.4", path = "../testing" } diff --git a/crates/swc_css_utils/Cargo.toml b/crates/swc_css_utils/Cargo.toml index a7a228f064b..a9934bbcc75 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.105.1" +version = "0.106.0" [lib] bench = false @@ -18,5 +18,5 @@ serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.61" swc_atoms = { version = "0.4.5", path = "../swc_atoms" } swc_common = { version = "0.27.13", path = "../swc_common" } -swc_css_ast = { version = "0.108.0", path = "../swc_css_ast" } -swc_css_visit = { version = "0.107.0", path = "../swc_css_visit" } +swc_css_ast = { version = "0.109.0", path = "../swc_css_ast" } +swc_css_visit = { version = "0.108.0", path = "../swc_css_visit" } diff --git a/crates/swc_css_visit/Cargo.toml b/crates/swc_css_visit/Cargo.toml index 675db71d748..8d9e8745621 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.107.0" +version = "0.108.0" [package.metadata.docs.rs] all-features = true @@ -23,5 +23,5 @@ path = [] serde = { version = "1", optional = true } swc_atoms = { version = "0.4.5", path = "../swc_atoms" } swc_common = { version = "0.27.13", path = "../swc_common" } -swc_css_ast = { version = "0.108.0", path = "../swc_css_ast" } +swc_css_ast = { version = "0.109.0", path = "../swc_css_ast" } swc_visit = { version = "0.5.2", path = "../swc_visit" } diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index 0cdb47fce32..090fc50681d 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.66.0" +version = "0.67.0" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.24.4", path = "../swc_html_ast"} swc_html_codegen = {version = "0.32.4", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.63.0", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.64.0", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.29.4", path = "../swc_html_parser"} swc_html_visit = {version = "0.24.4", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 1ff9c75b55d..2994158193a 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.63.0" +version = "0.64.0" [lib] bench = false @@ -22,10 +22,10 @@ serde_json = "1.0.61" swc_atoms = { version = "0.4.5", path = "../swc_atoms" } swc_cached = { version = "0.3.5", path = "../swc_cached" } swc_common = { version = "0.27.13", path = "../swc_common" } -swc_css_ast = { version = "0.108.0", path = "../swc_css_ast" } -swc_css_codegen = { version = "0.118.0", path = "../swc_css_codegen" } -swc_css_minifier = { version = "0.83.0", path = "../swc_css_minifier" } -swc_css_parser = { version = "0.117.0", path = "../swc_css_parser" } +swc_css_ast = { version = "0.109.0", path = "../swc_css_ast" } +swc_css_codegen = { version = "0.119.0", path = "../swc_css_codegen" } +swc_css_minifier = { version = "0.84.0", path = "../swc_css_minifier" } +swc_css_parser = { version = "0.118.0", path = "../swc_css_parser" } swc_ecma_ast = { version = "0.90.12", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.123.0", path = "../swc_ecma_codegen" } swc_ecma_minifier = { version = "0.150.0", path = "../swc_ecma_minifier" }