From 10f25067db325f05982d70760535abb9232fe7ce Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Wed, 13 Mar 2024 07:45:30 +0000 Subject: [PATCH] chore: Bump crates --- CHANGELOG.md | 11 ++++++++--- Cargo.lock | 12 ++++++------ crates/binding_macros/Cargo.toml | 4 ++-- crates/swc/Cargo.toml | 2 +- crates/swc_cli_impl/Cargo.toml | 4 ++-- crates/swc_core/Cargo.toml | 8 ++++---- crates/swc_estree_compat/Cargo.toml | 4 ++-- crates/swc_node_bundler/Cargo.toml | 4 ++-- 8 files changed, 27 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aaab2f31f22f..e8c85ae1921d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,12 @@ # Changelog +## [unreleased] + +### Miscellaneous Tasks + + + +- **(es)** Allow using older `tokio` ([#8740](https://github.com/swc-project/swc/issues/8740)) ([9c1eb01](https://github.com/swc-project/swc/commit/9c1eb017fcd90bd21b43f1a988c7fc67639343c1)) + ## [1.4.7] - 2024-03-13 ### Bug Fixes @@ -1401,9 +1409,6 @@ -- **(es/minifier)** Preserve `cooked` while compressing template literals ([#7773](https://github.com/swc-project/swc/issues/7773)) ([05990a9](https://github.com/swc-project/swc/commit/05990a98fd3f06a3c03bd1e795800acf22f16035)) - - - **(es/minifier)** Abort seq inliner if var is not fn_local or reassigned ([#7804](https://github.com/swc-project/swc/issues/7804)) ([f8ca366](https://github.com/swc-project/swc/commit/f8ca366cc179d2d83d35148c3600b8faa2e7f801)) diff --git a/Cargo.lock b/Cargo.lock index 68a882bf88a1..54d9c75b31a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -301,7 +301,7 @@ dependencies = [ [[package]] name = "binding_macros" -version = "0.64.19" +version = "0.64.20" dependencies = [ "anyhow", "console_error_panic_hook", @@ -3667,7 +3667,7 @@ dependencies = [ [[package]] name = "swc" -version = "0.273.19" +version = "0.273.20" dependencies = [ "ansi_term", "anyhow", @@ -3792,7 +3792,7 @@ dependencies = [ [[package]] name = "swc_cli_impl" -version = "0.8.19" +version = "0.8.20" dependencies = [ "anyhow", "assert_cmd", @@ -3897,7 +3897,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "0.90.20" +version = "0.90.21" dependencies = [ "anyhow", "binding_macros", @@ -4926,7 +4926,7 @@ dependencies = [ [[package]] name = "swc_estree_compat" -version = "0.198.18" +version = "0.198.19" dependencies = [ "ahash 0.8.8", "anyhow", @@ -5109,7 +5109,7 @@ dependencies = [ [[package]] name = "swc_node_bundler" -version = "0.62.19" +version = "0.62.20" dependencies = [ "anyhow", "dashmap", diff --git a/crates/binding_macros/Cargo.toml b/crates/binding_macros/Cargo.toml index ad3000692319..e14d61268b17 100644 --- a/crates/binding_macros/Cargo.toml +++ b/crates/binding_macros/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "Apache-2.0" name = "binding_macros" repository = "https://github.com/swc-project/swc.git" -version = "0.64.19" +version = "0.64.20" [lib] bench = false @@ -33,7 +33,7 @@ binding_wasm = [ [dependencies] # Common deps for the SWC imports -swc = { optional = true, version = "0.273.19", path = "../swc" } +swc = { optional = true, version = "0.273.20", path = "../swc" } swc_common = { optional = true, version = "0.33.19", path = "../swc_common" } swc_ecma_ast = { optional = true, version = "0.112.5", path = "../swc_ecma_ast" } swc_ecma_transforms = { optional = true, version = "0.229.15", path = "../swc_ecma_transforms" } diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 5498f4b67e78..29de9ecb8185 100644 --- a/crates/swc/Cargo.toml +++ b/crates/swc/Cargo.toml @@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc" repository = "https://github.com/swc-project/swc.git" -version = "0.273.19" +version = "0.273.20" [lib] bench = false diff --git a/crates/swc_cli_impl/Cargo.toml b/crates/swc_cli_impl/Cargo.toml index 78fb38d0ab75..5384b52c3104 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.8.19" +version = "0.8.20" [[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.90.20", features = [ +swc_core = { version = "0.90.21", features = [ "trace_macro", "common_concurrent", "base_concurrent", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index 933bf1cba7fb..3942d5bc3f19 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.90.20" +version = "0.90.21" [package.metadata.docs.rs] features = [ "allocator_node", @@ -327,8 +327,8 @@ __visit = ["__ecma", "swc_ecma_visit"] once_cell = { optional = true, version = "1.18.0" } # swc_* dependencies -binding_macros = { optional = true, version = "0.64.19", path = "../binding_macros" } -swc = { optional = true, version = "0.273.19", path = "../swc" } +binding_macros = { optional = true, version = "0.64.20", path = "../binding_macros" } +swc = { optional = true, version = "0.273.20", path = "../swc" } swc_atoms = { optional = true, version = "0.6.5", path = "../swc_atoms" } swc_bundler = { optional = true, version = "0.225.15", path = "../swc_bundler" } swc_cached = { optional = true, version = "0.3.19", path = "../swc_cached" } @@ -362,7 +362,7 @@ swc_ecma_usage_analyzer = { optional = true, version = "0.23.11", path swc_ecma_utils = { optional = true, version = "0.127.11", path = "../swc_ecma_utils" } swc_ecma_visit = { optional = true, version = "0.98.6", path = "../swc_ecma_visit" } swc_malloc = { optional = true, version = "0.5.10", path = "../swc_malloc" } -swc_node_bundler = { optional = true, version = "0.62.19", path = "../swc_node_bundler" } +swc_node_bundler = { optional = true, version = "0.62.20", path = "../swc_node_bundler" } swc_nodejs_common = { optional = true, version = "0.0.8", path = "../swc_nodejs_common" } swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" } swc_plugin_macro = { optional = true, version = "0.9.16", path = "../swc_plugin_macro" } diff --git a/crates/swc_estree_compat/Cargo.toml b/crates/swc_estree_compat/Cargo.toml index cade8465ea10..9358c732dba1 100644 --- a/crates/swc_estree_compat/Cargo.toml +++ b/crates/swc_estree_compat/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_estree_compat" repository = "https://github.com/swc-project/swc.git" -version = "0.198.18" +version = "0.198.19" [package.metadata.docs.rs] all-features = true @@ -40,7 +40,7 @@ swc_node_comments = { version = "0.20.18", path = "../swc_node_comments/" } criterion = "0.5" pretty_assertions = "1.3" -swc = { version = "0.273.19", path = "../swc" } +swc = { version = "0.273.20", path = "../swc" } swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "0.143.8", path = "../swc_ecma_parser" } swc_ecma_transforms = { version = "0.229.15", path = "../swc_ecma_transforms/" } diff --git a/crates/swc_node_bundler/Cargo.toml b/crates/swc_node_bundler/Cargo.toml index b090ae53050c..05256507a45f 100644 --- a/crates/swc_node_bundler/Cargo.toml +++ b/crates/swc_node_bundler/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_node_bundler" repository = "https://github.com/swc-project/swc.git" -version = "0.62.19" +version = "0.62.20" [lib] bench = false @@ -29,7 +29,7 @@ serde_json = "1" tracing = "0.1.37" string_enum = { version = "0.4.2", path = "../string_enum" } -swc = { version = "0.273.19", path = "../swc" } +swc = { version = "0.273.20", path = "../swc" } swc_atoms = { version = "0.6.5", path = "../swc_atoms" } swc_bundler = { version = "0.225.15", path = "../swc_bundler", features = [ "concurrent",