From a6355c11a87dbbb25535d66dadf352eceac23f95 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Mon, 4 Dec 2023 20:55:43 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ Cargo.lock | 20 ++++++++++---------- crates/swc_cli_impl/Cargo.toml | 4 ++-- crates/swc_core/Cargo.toml | 12 ++++++------ crates/swc_css/Cargo.toml | 12 ++++++------ crates/swc_css_codegen/Cargo.toml | 2 +- crates/swc_css_compat/Cargo.toml | 4 ++-- crates/swc_css_minifier/Cargo.toml | 4 ++-- crates/swc_css_modules/Cargo.toml | 6 +++--- crates/swc_css_prefixer/Cargo.toml | 4 ++-- crates/swc_html/Cargo.toml | 4 ++-- crates/swc_html_minifier/Cargo.toml | 6 +++--- 12 files changed, 42 insertions(+), 39 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c2e46c99321..46ba819277dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -962,6 +962,9 @@ - **(common)** Mark some methods of `Input` unsafe ([#7848](https://github.com/swc-project/swc/issues/7848)) ([c657324](https://github.com/swc-project/swc/commit/c65732496e4e2aab664b7443a29f5180cba6e965)) +- **(css/codegen)** Support stable rust ([#8379](https://github.com/swc-project/swc/issues/8379)) ([7cddbc6](https://github.com/swc-project/swc/commit/7cddbc618a189446d7f781a5c11f6f02bf7504e3)) + + - **(css/modules)** Support stable rust ([#8381](https://github.com/swc-project/swc/issues/8381)) ([0ff4157](https://github.com/swc-project/swc/commit/0ff4157375715b9bf6cf1ef791742707a24cfd70)) diff --git a/Cargo.lock b/Cargo.lock index 3d8ce3fa710a..4ac1f09c95f9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3912,7 +3912,7 @@ dependencies = [ [[package]] name = "swc_cli_impl" -version = "0.4.90" +version = "0.4.91" dependencies = [ "anyhow", "assert_cmd", @@ -4014,7 +4014,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.86.92" +version = "0.86.93" dependencies = [ "anyhow", "binding_macros", @@ -4065,7 +4065,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.157.22" +version = "0.157.23" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -4092,7 +4092,7 @@ dependencies = [ [[package]] name = "swc_css_codegen" -version = "0.151.18" +version = "0.151.19" dependencies = [ "auto_impl", "bitflags 2.3.2", @@ -4121,7 +4121,7 @@ dependencies = [ [[package]] name = "swc_css_compat" -version = "0.27.18" +version = "0.27.19" dependencies = [ "bitflags 2.3.2", "once_cell", @@ -4158,7 +4158,7 @@ dependencies = [ [[package]] name = "swc_css_minifier" -version = "0.116.18" +version = "0.116.19" dependencies = [ "criterion", "serde", @@ -4175,7 +4175,7 @@ dependencies = [ [[package]] name = "swc_css_modules" -version = "0.29.20" +version = "0.29.21" dependencies = [ "rustc-hash", "serde", @@ -4208,7 +4208,7 @@ dependencies = [ [[package]] name = "swc_css_prefixer" -version = "0.153.20" +version = "0.153.21" dependencies = [ "once_cell", "preset_env_base", @@ -5095,7 +5095,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.134.85" +version = "0.134.86" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -5146,7 +5146,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.131.84" +version = "0.131.85" dependencies = [ "criterion", "once_cell", diff --git a/crates/swc_cli_impl/Cargo.toml b/crates/swc_cli_impl/Cargo.toml index 93227792bab6..959fd92bc8a5 100644 --- a/crates/swc_cli_impl/Cargo.toml +++ b/crates/swc_cli_impl/Cargo.toml @@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_cli_impl" repository = "https://github.com/swc-project/swc.git" -version = "0.4.90" +version = "0.4.91" [[bin]] name = "swc" @@ -40,7 +40,7 @@ tracing-futures = "0.2.5" tracing-subscriber = { version = "0.3.9", features = ["env-filter"] } walkdir = "2" -swc_core = { version = "0.86.92", features = [ +swc_core = { version = "0.86.93", features = [ "trace_macro", "common_concurrent", "base_concurrent", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 436e1b397820..164d9a401d30 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.86.92" +version = "0.86.93" [package.metadata.docs.rs] features = [ "allocator_node", @@ -331,12 +331,12 @@ swc_bundler = { optional = true, version = "0.222.76", path swc_cached = { optional = true, version = "0.3.18", path = "../swc_cached" } swc_common = { optional = true, version = "0.33.10", path = "../swc_common" } swc_css_ast = { optional = true, version = "0.140.11", path = "../swc_css_ast" } -swc_css_codegen = { optional = true, version = "0.151.18", path = "../swc_css_codegen" } -swc_css_compat = { optional = true, version = "0.27.18", path = "../swc_css_compat" } -swc_css_minifier = { optional = true, version = "0.116.18", path = "../swc_css_minifier" } -swc_css_modules = { optional = true, version = "0.29.20", path = "../swc_css_modules" } +swc_css_codegen = { optional = true, version = "0.151.19", path = "../swc_css_codegen" } +swc_css_compat = { optional = true, version = "0.27.19", path = "../swc_css_compat" } +swc_css_minifier = { optional = true, version = "0.116.19", path = "../swc_css_minifier" } +swc_css_modules = { optional = true, version = "0.29.21", path = "../swc_css_modules" } swc_css_parser = { optional = true, version = "0.150.18", path = "../swc_css_parser" } -swc_css_prefixer = { optional = true, version = "0.153.20", path = "../swc_css_prefixer" } +swc_css_prefixer = { optional = true, version = "0.153.21", path = "../swc_css_prefixer" } swc_css_utils = { optional = true, version = "0.137.11", path = "../swc_css_utils/" } swc_css_visit = { optional = true, version = "0.139.11", path = "../swc_css_visit" } swc_ecma_ast = { optional = true, version = "0.110.12", path = "../swc_ecma_ast" } diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index 34655a34e069..2fd8bf73e7e1 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.157.22" +version = "0.157.23" [package.metadata.docs.rs] all-features = true @@ -23,11 +23,11 @@ prefixer = ["swc_css_prefixer"] [dependencies] swc_css_ast = { version = "0.140.11", path = "../swc_css_ast" } -swc_css_codegen = { version = "0.151.18", path = "../swc_css_codegen" } -swc_css_compat = { version = "0.27.18", path = "../swc_css_compat", optional = true } -swc_css_minifier = { version = "0.116.18", path = "../swc_css_minifier", optional = true } -swc_css_modules = { version = "0.29.20", path = "../swc_css_modules", optional = true } +swc_css_codegen = { version = "0.151.19", path = "../swc_css_codegen" } +swc_css_compat = { version = "0.27.19", path = "../swc_css_compat", optional = true } +swc_css_minifier = { version = "0.116.19", path = "../swc_css_minifier", optional = true } +swc_css_modules = { version = "0.29.21", path = "../swc_css_modules", optional = true } swc_css_parser = { version = "0.150.18", path = "../swc_css_parser" } -swc_css_prefixer = { version = "0.153.20", path = "../swc_css_prefixer", optional = true } +swc_css_prefixer = { version = "0.153.21", path = "../swc_css_prefixer", optional = true } swc_css_utils = { version = "0.137.11", path = "../swc_css_utils/" } swc_css_visit = { version = "0.139.11", path = "../swc_css_visit" } diff --git a/crates/swc_css_codegen/Cargo.toml b/crates/swc_css_codegen/Cargo.toml index 84391335b8a8..9419961c8a73 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.151.18" +version = "0.151.19" [lib] bench = false diff --git a/crates/swc_css_compat/Cargo.toml b/crates/swc_css_compat/Cargo.toml index 5cb9fc66244e..f16a04787717 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.27.18" +version = "0.27.19" [lib] bench = false @@ -25,6 +25,6 @@ swc_css_utils = { version = "0.137.11", path = "../swc_css_utils/" } swc_css_visit = { version = "0.139.11", path = "../swc_css_visit" } [dev-dependencies] -swc_css_codegen = { version = "0.151.18", path = "../swc_css_codegen" } +swc_css_codegen = { version = "0.151.19", path = "../swc_css_codegen" } swc_css_parser = { version = "0.150.18", path = "../swc_css_parser" } testing = { version = "0.35.12", path = "../testing" } diff --git a/crates/swc_css_minifier/Cargo.toml b/crates/swc_css_minifier/Cargo.toml index be28c5a18af5..1647abbaba81 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.116.18" +version = "0.116.19" [lib] bench = false @@ -24,7 +24,7 @@ swc_css_visit = { version = "0.139.11", path = "../swc_css_visit" } [dev-dependencies] criterion = "0.5" -swc_css_codegen = { version = "0.151.18", path = "../swc_css_codegen" } +swc_css_codegen = { version = "0.151.19", path = "../swc_css_codegen" } swc_css_parser = { version = "0.150.18", path = "../swc_css_parser" } swc_malloc = { version = "0.5.10", path = "../swc_malloc" } testing = { version = "0.35.12", path = "../testing" } diff --git a/crates/swc_css_modules/Cargo.toml b/crates/swc_css_modules/Cargo.toml index 00837cb58307..8dced3c4b7d7 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.29.20" +version = "0.29.21" [lib] bench = false @@ -21,12 +21,12 @@ serde = { version = "1", features = ["derive"] } swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_common = { version = "0.33.10", path = "../swc_common" } swc_css_ast = { version = "0.140.11", path = "../swc_css_ast" } -swc_css_codegen = { version = "0.151.18", path = "../swc_css_codegen" } +swc_css_codegen = { version = "0.151.19", path = "../swc_css_codegen" } swc_css_parser = { version = "0.150.18", path = "../swc_css_parser" } swc_css_visit = { version = "0.139.11", path = "../swc_css_visit" } [dev-dependencies] serde_json = "1" -swc_css_compat = { version = "0.27.18", path = "../swc_css_compat" } +swc_css_compat = { version = "0.27.19", path = "../swc_css_compat" } testing = { version = "0.35.12", path = "../testing" } diff --git a/crates/swc_css_prefixer/Cargo.toml b/crates/swc_css_prefixer/Cargo.toml index 3296db8ec299..1680906e424e 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.153.20" +version = "0.153.21" [lib] bench = false @@ -25,6 +25,6 @@ swc_css_utils = { version = "0.137.11", path = "../swc_css_utils/" } swc_css_visit = { version = "0.139.11", path = "../swc_css_visit" } [dev-dependencies] -swc_css_codegen = { version = "0.151.18", path = "../swc_css_codegen" } +swc_css_codegen = { version = "0.151.19", path = "../swc_css_codegen" } swc_css_parser = { version = "0.150.18", path = "../swc_css_parser" } testing = { version = "0.35.12", path = "../testing" } diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index b9f1ea14a995..9d58e50aeb1b 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.134.85" +version = "0.134.86" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.33.10", path = "../swc_html_ast"} swc_html_codegen = {version = "0.42.14", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.131.84", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.131.85", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.39.14", path = "../swc_html_parser"} swc_html_visit = {version = "0.33.10", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 4d9270b504c8..1d0441d8e444 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.131.84" +version = "0.131.85" [lib] bench = false @@ -24,8 +24,8 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_cached = { version = "0.3.18", path = "../swc_cached" } swc_common = { version = "0.33.10", path = "../swc_common" } swc_css_ast = { version = "0.140.11", path = "../swc_css_ast" } -swc_css_codegen = { version = "0.151.18", path = "../swc_css_codegen" } -swc_css_minifier = { version = "0.116.18", path = "../swc_css_minifier" } +swc_css_codegen = { version = "0.151.19", path = "../swc_css_codegen" } +swc_css_minifier = { version = "0.116.19", path = "../swc_css_minifier" } swc_css_parser = { version = "0.150.18", path = "../swc_css_parser" } swc_ecma_ast = { version = "0.110.12", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.146.39", path = "../swc_ecma_codegen", features = [