From d1ae6bb3d97591ce838d4e0b8c6387cb5bc69d52 Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Thu, 23 Mar 2023 09:14:02 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ Cargo.lock | 18 +++++++++--------- 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 +++--- 11 files changed, 39 insertions(+), 36 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b17a7fbec8c..6e5753796f20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ +- **(css/codegen)** Preserve `raw` of numbers (#7131) ([150c2b6](https://github.com/swc-project/swc/commit/150c2b6fbaef976c6ee97438d1b9b7ffe4b210be)) + + - **(es/react)** Respect `import_source` in new jsx (#7128) ([5d7acfd](https://github.com/swc-project/swc/commit/5d7acfd9cbbb9780879d0d7a046f716572a477f7)) diff --git a/Cargo.lock b/Cargo.lock index b3454e64b7a8..ec0ef77d9c26 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3316,7 +3316,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.69.26" +version = "0.69.27" dependencies = [ "anyhow", "binding_macros", @@ -3369,7 +3369,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.149.18" +version = "0.149.19" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -3397,7 +3397,7 @@ dependencies = [ [[package]] name = "swc_css_codegen" -version = "0.144.15" +version = "0.144.16" dependencies = [ "auto_impl", "bitflags", @@ -3426,7 +3426,7 @@ dependencies = [ [[package]] name = "swc_css_compat" -version = "0.20.15" +version = "0.20.16" dependencies = [ "bitflags", "once_cell", @@ -3463,7 +3463,7 @@ dependencies = [ [[package]] name = "swc_css_minifier" -version = "0.109.16" +version = "0.109.17" dependencies = [ "criterion", "serde", @@ -3480,7 +3480,7 @@ dependencies = [ [[package]] name = "swc_css_modules" -version = "0.21.17" +version = "0.21.18" dependencies = [ "rustc-hash", "serde", @@ -3514,7 +3514,7 @@ dependencies = [ [[package]] name = "swc_css_prefixer" -version = "0.146.15" +version = "0.146.16" dependencies = [ "once_cell", "preset_env_base", @@ -4221,7 +4221,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.118.22" +version = "0.118.23" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -4273,7 +4273,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.115.22" +version = "0.115.23" dependencies = [ "criterion", "once_cell", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 78027a0a7de8..713bb5c97f23 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.69.26" +version = "0.69.27" [package.metadata.docs.rs] features = [ "common_perf", @@ -347,11 +347,11 @@ swc_bundler = { optional = true, version = "0.208.20", path swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" } swc_common = { optional = true, version = "0.29.38", path = "../swc_common" } swc_css_ast = { optional = true, version = "0.134.12", path = "../swc_css_ast" } -swc_css_codegen = { optional = true, version = "0.144.15", path = "../swc_css_codegen" } -swc_css_minifier = { optional = true, version = "0.109.16", path = "../swc_css_minifier" } -swc_css_modules = { optional = true, version = "0.21.17", path = "../swc_css_modules" } +swc_css_codegen = { optional = true, version = "0.144.16", path = "../swc_css_codegen" } +swc_css_minifier = { optional = true, version = "0.109.17", path = "../swc_css_minifier" } +swc_css_modules = { optional = true, version = "0.21.18", path = "../swc_css_modules" } swc_css_parser = { optional = true, version = "0.143.13", path = "../swc_css_parser" } -swc_css_prefixer = { optional = true, version = "0.146.15", path = "../swc_css_prefixer" } +swc_css_prefixer = { optional = true, version = "0.146.16", path = "../swc_css_prefixer" } swc_css_utils = { optional = true, version = "0.131.13", path = "../swc_css_utils/" } swc_css_visit = { optional = true, version = "0.133.12", path = "../swc_css_visit" } swc_ecma_ast = { optional = true, version = "0.100.4", path = "../swc_ecma_ast" } @@ -381,7 +381,7 @@ swc_plugin_proxy = { optional = true, version = "0.29.4", path = swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" } testing = { optional = true, version = "0.31.41", path = "../testing" } # TODO: eventually swc_plugin_runner needs to remove default features -swc_css_compat = { version = "0.20.15", path = "../swc_css_compat", optional = true } +swc_css_compat = { version = "0.20.16", path = "../swc_css_compat", optional = true } swc_plugin_runner = { optional = true, version = "0.91.8", path = "../swc_plugin_runner", default-features = false } [build-dependencies] diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index f735f90c1681..38a27c63bee5 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.18" +version = "0.149.19" [package.metadata.docs.rs] all-features = true @@ -23,11 +23,11 @@ prefixer = ["swc_css_prefixer"] [dependencies] swc_css_ast = { version = "0.134.12", path = "../swc_css_ast" } -swc_css_codegen = { version = "0.144.15", path = "../swc_css_codegen" } -swc_css_compat = { version = "0.20.15", path = "../swc_css_compat", optional = true } -swc_css_minifier = { version = "0.109.16", path = "../swc_css_minifier", optional = true } -swc_css_modules = { version = "0.21.17", path = "../swc_css_modules", optional = true } +swc_css_codegen = { version = "0.144.16", path = "../swc_css_codegen" } +swc_css_compat = { version = "0.20.16", path = "../swc_css_compat", optional = true } +swc_css_minifier = { version = "0.109.17", path = "../swc_css_minifier", optional = true } +swc_css_modules = { version = "0.21.18", path = "../swc_css_modules", optional = true } swc_css_parser = { version = "0.143.13", path = "../swc_css_parser" } -swc_css_prefixer = { version = "0.146.15", path = "../swc_css_prefixer", optional = true } +swc_css_prefixer = { version = "0.146.16", path = "../swc_css_prefixer", optional = true } swc_css_utils = { version = "0.131.13", path = "../swc_css_utils/" } swc_css_visit = { version = "0.133.12", path = "../swc_css_visit" } diff --git a/crates/swc_css_codegen/Cargo.toml b/crates/swc_css_codegen/Cargo.toml index f01efa2616a2..7dc5520b4ce8 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.144.15" +version = "0.144.16" [lib] bench = false diff --git a/crates/swc_css_compat/Cargo.toml b/crates/swc_css_compat/Cargo.toml index 562e0f001343..8bf17dec1a8d 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.20.15" +version = "0.20.16" [lib] bench = false @@ -24,6 +24,6 @@ swc_css_utils = { version = "0.131.13", path = "../swc_css_utils/" } swc_css_visit = { version = "0.133.12", path = "../swc_css_visit" } [dev-dependencies] -swc_css_codegen = { version = "0.144.15", path = "../swc_css_codegen" } +swc_css_codegen = { version = "0.144.16", path = "../swc_css_codegen" } swc_css_parser = { version = "0.143.13", path = "../swc_css_parser" } testing = { version = "0.31.41", path = "../testing" } diff --git a/crates/swc_css_minifier/Cargo.toml b/crates/swc_css_minifier/Cargo.toml index 4c5321b72c69..39edd11492e6 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.109.16" +version = "0.109.17" [lib] bench = false @@ -22,7 +22,7 @@ swc_css_visit = { version = "0.133.12", path = "../swc_css_visit" } [dev-dependencies] criterion = "0.3" -swc_css_codegen = { version = "0.144.15", path = "../swc_css_codegen" } +swc_css_codegen = { version = "0.144.16", path = "../swc_css_codegen" } swc_css_parser = { version = "0.143.13", path = "../swc_css_parser" } swc_node_base = { version = "0.5.8", path = "../swc_node_base" } testing = { version = "0.31.41", path = "../testing" } diff --git a/crates/swc_css_modules/Cargo.toml b/crates/swc_css_modules/Cargo.toml index a204f2a6ced0..cb50b2e6be64 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.17" +version = "0.21.18" [lib] bench = false @@ -20,11 +20,11 @@ serde = { version = "1", features = ["derive"] } swc_atoms = { version = "0.4.39", path = "../swc_atoms" } swc_common = { version = "0.29.38", path = "../swc_common" } swc_css_ast = { version = "0.134.12", path = "../swc_css_ast" } -swc_css_codegen = { version = "0.144.15", path = "../swc_css_codegen" } +swc_css_codegen = { version = "0.144.16", path = "../swc_css_codegen" } swc_css_parser = { version = "0.143.13", path = "../swc_css_parser" } swc_css_visit = { version = "0.133.12", path = "../swc_css_visit" } [dev-dependencies] serde_json = "1" -swc_css_compat = { version = "0.20.15", path = "../swc_css_compat" } +swc_css_compat = { version = "0.20.16", path = "../swc_css_compat" } testing = { version = "0.31.41", path = "../testing" } diff --git a/crates/swc_css_prefixer/Cargo.toml b/crates/swc_css_prefixer/Cargo.toml index 59351884186c..fbcfb856d690 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.146.15" +version = "0.146.16" [lib] bench = false @@ -24,6 +24,6 @@ swc_css_utils = { version = "0.131.13", path = "../swc_css_utils/" } swc_css_visit = { version = "0.133.12", path = "../swc_css_visit" } [dev-dependencies] -swc_css_codegen = { version = "0.144.15", path = "../swc_css_codegen" } +swc_css_codegen = { version = "0.144.16", path = "../swc_css_codegen" } swc_css_parser = { version = "0.143.13", path = "../swc_css_parser" } testing = { version = "0.31.41", path = "../testing" } diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index 274cee5b9acf..af9e6758b3b6 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.118.22" +version = "0.118.23" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.28.31", path = "../swc_html_ast"} swc_html_codegen = {version = "0.37.44", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.115.22", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.115.23", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.34.43", path = "../swc_html_parser"} swc_html_visit = {version = "0.28.31", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 79fc76258bbf..1d85a44d7c4c 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.115.22" +version = "0.115.23" [lib] bench = false @@ -23,8 +23,8 @@ swc_atoms = { version = "0.4.39", path = "../swc_atoms" } swc_cached = { version = "0.3.15", path = "../swc_cached" } swc_common = { version = "0.29.38", path = "../swc_common" } swc_css_ast = { version = "0.134.12", path = "../swc_css_ast" } -swc_css_codegen = { version = "0.144.15", path = "../swc_css_codegen" } -swc_css_minifier = { version = "0.109.16", path = "../swc_css_minifier" } +swc_css_codegen = { version = "0.144.16", path = "../swc_css_codegen" } +swc_css_minifier = { version = "0.109.17", path = "../swc_css_minifier" } swc_css_parser = { version = "0.143.13", path = "../swc_css_parser" } swc_ecma_ast = { version = "0.100.4", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "0.135.9", path = "../swc_ecma_codegen" }