diff --git a/.changeset/quick-actors-do.md b/.changeset/quick-actors-do.md deleted file mode 100644 index 47c0e9d17108..000000000000 --- a/.changeset/quick-actors-do.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -swc_core: patch -swc_ecma_compat_es2015: patch ---- - -fix(es/generator): Fix code generation for `break` in nested while diff --git a/.changeset/silent-cows-brake.md b/.changeset/silent-cows-brake.md deleted file mode 100644 index 7e083c0549bc..000000000000 --- a/.changeset/silent-cows-brake.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -swc: patch -swc_common: patch -swc_core: patch ---- - -perf(es): Cache `current_dir()` system calls diff --git a/CHANGELOG.md b/CHANGELOG.md index af983c22e113..b69fe6baadf2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog ## [unreleased] +### Bug Fixes + + + +- **(es/generator)** Fix code generation for `break` in nested while ([#9684](https://github.com/swc-project/swc/issues/9684)) ([65872af](https://github.com/swc-project/swc/commit/65872afaf151412be5f14820080325b920901bfb)) + ### Features @@ -10,10 +16,19 @@ - **(es/parser)** Ability to get script's potential module errors ([#9682](https://github.com/swc-project/swc/issues/9682)) ([2bbd1e8](https://github.com/swc-project/swc/commit/2bbd1e8485ca7c152d408cc34cd51460467171a7)) +### Miscellaneous Tasks + + + +- **(deps)** Update cargo (patch) ([#9607](https://github.com/swc-project/swc/issues/9607)) ([3597b0f](https://github.com/swc-project/swc/commit/3597b0f53d060b09b7e878e9c825321f053d189e)) + ### Performance +- **(es)** Cache `current_dir()` system calls ([#9683](https://github.com/swc-project/swc/issues/9683)) ([7aab945](https://github.com/swc-project/swc/commit/7aab945a2199be06e20a35ec0d197fc817a48d9d)) + + - **(visit)** Introduce `Pass` API and adjust visitor APIs for it ([#9680](https://github.com/swc-project/swc/issues/9680)) ([581aafb](https://github.com/swc-project/swc/commit/581aafb4dfbbcf9b834e3b578cad83fec452a062)) ## [1.7.40] - 2024-10-26 diff --git a/Cargo.lock b/Cargo.lock index d03515ce191c..2ae53eda6177 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3850,7 +3850,7 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" [[package]] name = "swc" -version = "3.0.0" +version = "3.0.1" dependencies = [ "ansi_term", "anyhow", @@ -4030,7 +4030,7 @@ dependencies = [ [[package]] name = "swc_common" -version = "2.0.0" +version = "2.0.1" dependencies = [ "ahash 0.8.11", "anyhow", @@ -4115,7 +4115,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "3.0.0" +version = "3.0.1" dependencies = [ "anyhow", "binding_macros", @@ -4442,7 +4442,7 @@ dependencies = [ [[package]] name = "swc_ecma_compat_es2015" -version = "3.0.0" +version = "3.0.1" dependencies = [ "arrayvec", "indexmap 2.5.0", diff --git a/crates/binding_macros/Cargo.toml b/crates/binding_macros/Cargo.toml index 4e27aa96124f..33863256aa6e 100644 --- a/crates/binding_macros/Cargo.toml +++ b/crates/binding_macros/Cargo.toml @@ -33,8 +33,8 @@ binding_wasm = [ [dependencies] # Common deps for the SWC imports -swc = { optional = true, version = "3.0.0", path = "../swc" } -swc_common = { optional = true, version = "2.0.0", path = "../swc_common" } +swc = { optional = true, version = "3.0.1", path = "../swc" } +swc_common = { optional = true, version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { optional = true, version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_transforms = { optional = true, version = "3.0.0", path = "../swc_ecma_transforms" } swc_ecma_visit = { optional = true, version = "2.0.0", path = "../swc_ecma_visit" } diff --git a/crates/dbg-swc/Cargo.toml b/crates/dbg-swc/Cargo.toml index 58e2bc274247..aa918b4ea2d9 100644 --- a/crates/dbg-swc/Cargo.toml +++ b/crates/dbg-swc/Cargo.toml @@ -27,7 +27,7 @@ clap = { version = "3", features = ["derive"] } tracing-subscriber = { workspace = true, features = ["fmt", "env-filter"] } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", features = [ +swc_common = { version = "2.0.1", features = [ "concurrent", "tty-emitter", ], path = "../swc_common" } diff --git a/crates/jsdoc/Cargo.toml b/crates/jsdoc/Cargo.toml index e2edcc5e9f36..46fe0c913242 100644 --- a/crates/jsdoc/Cargo.toml +++ b/crates/jsdoc/Cargo.toml @@ -20,7 +20,7 @@ nom = { workspace = true } serde = { workspace = true, features = ["derive"], optional = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } [dev-dependencies] anyhow = { workspace = true } diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 04eb907fb402..e03f83df986a 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 = "3.0.0" +version = "3.0.1" [lib] bench = false @@ -69,7 +69,7 @@ url = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } swc_cached = { version = "1.0.0", path = "../swc_cached" } -swc_common = { version = "2.0.0", path = "../swc_common", features = [ +swc_common = { version = "2.0.1", path = "../swc_common", features = [ "ahash", "sourcemap", "parking_lot", diff --git a/crates/swc_bundler/Cargo.toml b/crates/swc_bundler/Cargo.toml index 38829d003f8a..0f17400eda7e 100644 --- a/crates/swc_bundler/Cargo.toml +++ b/crates/swc_bundler/Cargo.toml @@ -38,7 +38,7 @@ relative-path = { workspace = true } tracing = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_codegen = { version = "2.0.0", path = "../swc_ecma_codegen" } swc_ecma_loader = { version = "2.0.0", path = "../swc_ecma_loader" } diff --git a/crates/swc_cli_impl/Cargo.toml b/crates/swc_cli_impl/Cargo.toml index 6f2df35b94ea..c3b4ef0c98a1 100644 --- a/crates/swc_cli_impl/Cargo.toml +++ b/crates/swc_cli_impl/Cargo.toml @@ -39,7 +39,7 @@ tracing-futures = { workspace = true } tracing-subscriber = { workspace = true, features = ["env-filter"] } walkdir = { workspace = true } -swc_core = { version = "3.0.0", features = [ +swc_core = { version = "3.0.1", features = [ "trace_macro", "common_concurrent", "base_concurrent", diff --git a/crates/swc_common/Cargo.toml b/crates/swc_common/Cargo.toml index 77c00a2517d7..4a3d8b27e4e2 100644 --- a/crates/swc_common/Cargo.toml +++ b/crates/swc_common/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_common" repository = "https://github.com/swc-project/swc.git" -version = "2.0.0" +version = "2.0.1" [package.metadata.docs.rs] all-features = true diff --git a/crates/swc_compiler_base/Cargo.toml b/crates/swc_compiler_base/Cargo.toml index 674d24627626..3ceb153cc457 100644 --- a/crates/swc_compiler_base/Cargo.toml +++ b/crates/swc_compiler_base/Cargo.toml @@ -24,7 +24,7 @@ sourcemap = { workspace = true } swc_allocator = { version = "1.0.0", path = "../swc_allocator", default-features = false } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common", features = [ +swc_common = { version = "2.0.1", path = "../swc_common", features = [ "sourcemap", ] } swc_config = { version = "1.0.0", path = "../swc_config" } diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index bc1e44bf75ab..191631ca04c2 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 = "3.0.0" +version = "3.0.1" [package.metadata.docs.rs] features = [ "allocator_node", @@ -339,11 +339,11 @@ once_cell = { workspace = true, optional = true } # swc_* dependencies binding_macros = { optional = true, version = "3.0.0", path = "../binding_macros" } -swc = { optional = true, version = "3.0.0", path = "../swc" } +swc = { optional = true, version = "3.0.1", path = "../swc" } swc_atoms = { optional = true, version = "2.0.0", path = "../swc_atoms" } swc_bundler = { optional = true, version = "3.0.0", path = "../swc_bundler" } swc_cached = { optional = true, version = "1.0.0", path = "../swc_cached" } -swc_common = { optional = true, version = "2.0.0", path = "../swc_common" } +swc_common = { optional = true, version = "2.0.1", path = "../swc_common" } swc_css_ast = { optional = true, version = "2.0.0", path = "../swc_css_ast" } swc_css_codegen = { optional = true, version = "2.0.0", path = "../swc_css_codegen" } swc_css_compat = { optional = true, version = "2.0.0", path = "../swc_css_compat" } diff --git a/crates/swc_css_ast/Cargo.toml b/crates/swc_css_ast/Cargo.toml index 98d3214be3b8..160173472879 100644 --- a/crates/swc_css_ast/Cargo.toml +++ b/crates/swc_css_ast/Cargo.toml @@ -23,6 +23,6 @@ serde = { workspace = true, features = ["derive"], optional = true } string_enum = { version = "1.0.0", path = "../string_enum/" } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } rkyv = { workspace = true, features = ["validation"], optional = true } diff --git a/crates/swc_css_codegen/Cargo.toml b/crates/swc_css_codegen/Cargo.toml index 1187fc5ac665..2767cbf4fc23 100644 --- a/crates/swc_css_codegen/Cargo.toml +++ b/crates/swc_css_codegen/Cargo.toml @@ -19,13 +19,13 @@ rustc-hash = { workspace = true } serde = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_css_ast = { version = "2.0.0", path = "../swc_css_ast" } swc_css_codegen_macros = { version = "1.0.0", path = "../swc_css_codegen_macros" } swc_css_utils = { version = "2.0.0", path = "../swc_css_utils" } [dev-dependencies] -swc_common = { version = "2.0.0", path = "../swc_common", features = [ +swc_common = { version = "2.0.1", path = "../swc_common", features = [ "sourcemap", ] } swc_css_parser = { version = "2.0.0", path = "../swc_css_parser" } diff --git a/crates/swc_css_compat/Cargo.toml b/crates/swc_css_compat/Cargo.toml index 27d1a8baecde..3145d5e6eaa9 100644 --- a/crates/swc_css_compat/Cargo.toml +++ b/crates/swc_css_compat/Cargo.toml @@ -19,7 +19,7 @@ serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_css_ast = { version = "2.0.0", path = "../swc_css_ast" } swc_css_utils = { version = "2.0.0", path = "../swc_css_utils/" } swc_css_visit = { version = "2.0.0", path = "../swc_css_visit" } diff --git a/crates/swc_css_lints/Cargo.toml b/crates/swc_css_lints/Cargo.toml index 63447c1e62fc..13ba988b72fe 100644 --- a/crates/swc_css_lints/Cargo.toml +++ b/crates/swc_css_lints/Cargo.toml @@ -21,7 +21,7 @@ thiserror = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } swc_cached = { version = "1.0.0", path = "../swc_cached" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_css_ast = { version = "2.0.0", path = "../swc_css_ast" } swc_css_visit = { version = "2.0.0", path = "../swc_css_visit" } diff --git a/crates/swc_css_minifier/Cargo.toml b/crates/swc_css_minifier/Cargo.toml index 76a86952e48f..0cd07e91af02 100644 --- a/crates/swc_css_minifier/Cargo.toml +++ b/crates/swc_css_minifier/Cargo.toml @@ -16,7 +16,7 @@ bench = false serde = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_css_ast = { version = "2.0.0", path = "../swc_css_ast" } swc_css_utils = { version = "2.0.0", path = "../swc_css_utils/" } swc_css_visit = { version = "2.0.0", path = "../swc_css_visit" } diff --git a/crates/swc_css_modules/Cargo.toml b/crates/swc_css_modules/Cargo.toml index bb15528d52bc..da812388b574 100644 --- a/crates/swc_css_modules/Cargo.toml +++ b/crates/swc_css_modules/Cargo.toml @@ -19,7 +19,7 @@ rustc-hash = { workspace = true } serde = { workspace = true, features = ["derive"] } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_css_ast = { version = "2.0.0", path = "../swc_css_ast" } swc_css_codegen = { version = "2.0.0", path = "../swc_css_codegen" } swc_css_parser = { version = "2.0.0", path = "../swc_css_parser" } diff --git a/crates/swc_css_parser/Cargo.toml b/crates/swc_css_parser/Cargo.toml index af9dd132d864..2e3d10b410c4 100644 --- a/crates/swc_css_parser/Cargo.toml +++ b/crates/swc_css_parser/Cargo.toml @@ -20,7 +20,7 @@ lexical = { workspace = true } serde = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_css_ast = { version = "2.0.0", path = "../swc_css_ast" } [dev-dependencies] diff --git a/crates/swc_css_prefixer/Cargo.toml b/crates/swc_css_prefixer/Cargo.toml index e7d376d2f8f7..6ac623c74b15 100644 --- a/crates/swc_css_prefixer/Cargo.toml +++ b/crates/swc_css_prefixer/Cargo.toml @@ -19,7 +19,7 @@ serde_json = { workspace = true } preset_env_base = { version = "1.0.0", path = "../preset_env_base" } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_css_ast = { version = "2.0.0", path = "../swc_css_ast" } swc_css_utils = { version = "2.0.0", path = "../swc_css_utils/" } swc_css_visit = { version = "2.0.0", path = "../swc_css_visit" } diff --git a/crates/swc_css_utils/Cargo.toml b/crates/swc_css_utils/Cargo.toml index 063cdfb67001..0dcdab496c7c 100644 --- a/crates/swc_css_utils/Cargo.toml +++ b/crates/swc_css_utils/Cargo.toml @@ -18,6 +18,6 @@ serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_css_ast = { version = "2.0.0", path = "../swc_css_ast" } swc_css_visit = { version = "2.0.0", path = "../swc_css_visit" } diff --git a/crates/swc_css_visit/Cargo.toml b/crates/swc_css_visit/Cargo.toml index c795d7be7774..0e972a74c23d 100644 --- a/crates/swc_css_visit/Cargo.toml +++ b/crates/swc_css_visit/Cargo.toml @@ -23,6 +23,6 @@ path = [] serde = { workspace = true, optional = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_css_ast = { version = "2.0.0", path = "../swc_css_ast" } swc_visit = { version = "2.0.0", path = "../swc_visit" } diff --git a/crates/swc_ecma_ast/Cargo.toml b/crates/swc_ecma_ast/Cargo.toml index 1450b1010862..1789c68d7492 100644 --- a/crates/swc_ecma_ast/Cargo.toml +++ b/crates/swc_ecma_ast/Cargo.toml @@ -41,7 +41,7 @@ scoped-tls = { workspace = true } serde = { workspace = true, features = ["derive"], optional = true } string_enum = { version = "1.0.0", path = "../string_enum" } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_visit = { version = "2.0.0", path = "../swc_visit" } unicode-id-start = { workspace = true } diff --git a/crates/swc_ecma_codegen/Cargo.toml b/crates/swc_ecma_codegen/Cargo.toml index 368311078029..2e522a5cd07a 100644 --- a/crates/swc_ecma_codegen/Cargo.toml +++ b/crates/swc_ecma_codegen/Cargo.toml @@ -27,7 +27,7 @@ tracing = { workspace = true } swc_allocator = { version = "1.0.0", path = "../swc_allocator", default-features = false } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_codegen_macros = { version = "1.0.0", path = "../swc_ecma_codegen_macros" } @@ -38,7 +38,7 @@ criterion = { workspace = true } serde_json = { workspace = true } swc_allocator = { version = "1.0.0", path = "../swc_allocator" } -swc_common = { version = "2.0.0", path = "../swc_common", features = [ +swc_common = { version = "2.0.1", path = "../swc_common", features = [ "sourcemap", ] } swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" } diff --git a/crates/swc_ecma_compat_bugfixes/Cargo.toml b/crates/swc_ecma_compat_bugfixes/Cargo.toml index 4bd6d77c6ca2..d839b90d4634 100644 --- a/crates/swc_ecma_compat_bugfixes/Cargo.toml +++ b/crates/swc_ecma_compat_bugfixes/Cargo.toml @@ -12,9 +12,9 @@ version = "3.0.0" [dependencies] swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } -swc_ecma_compat_es2015 = { version = "3.0.0", path = "../swc_ecma_compat_es2015" } +swc_ecma_compat_es2015 = { version = "3.0.1", path = "../swc_ecma_compat_es2015" } swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit" } diff --git a/crates/swc_ecma_compat_common/Cargo.toml b/crates/swc_ecma_compat_common/Cargo.toml index f11e5284bb72..d4404daba052 100644 --- a/crates/swc_ecma_compat_common/Cargo.toml +++ b/crates/swc_ecma_compat_common/Cargo.toml @@ -12,7 +12,7 @@ version = "3.0.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit" } diff --git a/crates/swc_ecma_compat_es2015/Cargo.toml b/crates/swc_ecma_compat_es2015/Cargo.toml index d416bb7bdcb5..b7cfba0c0ae8 100644 --- a/crates/swc_ecma_compat_es2015/Cargo.toml +++ b/crates/swc_ecma_compat_es2015/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_compat_es2015" repository = "https://github.com/swc-project/swc.git" -version = "3.0.0" +version = "3.0.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -23,7 +23,7 @@ smallvec = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_config = { version = "1.0.0", path = "../swc_config" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_compat_common = { version = "3.0.0", path = "../swc_ecma_compat_common" } diff --git a/crates/swc_ecma_compat_es2016/Cargo.toml b/crates/swc_ecma_compat_es2016/Cargo.toml index 676719fccf9a..52c3cf86282c 100644 --- a/crates/swc_ecma_compat_es2016/Cargo.toml +++ b/crates/swc_ecma_compat_es2016/Cargo.toml @@ -14,7 +14,7 @@ version = "3.0.0" [dependencies] swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" } diff --git a/crates/swc_ecma_compat_es2017/Cargo.toml b/crates/swc_ecma_compat_es2017/Cargo.toml index b5985e84ae6d..c40fe826c4f8 100644 --- a/crates/swc_ecma_compat_es2017/Cargo.toml +++ b/crates/swc_ecma_compat_es2017/Cargo.toml @@ -17,7 +17,7 @@ serde = { workspace = true, features = ["derive"] } tracing = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" } diff --git a/crates/swc_ecma_compat_es2018/Cargo.toml b/crates/swc_ecma_compat_es2018/Cargo.toml index e55e212d80a8..7b4e7eb4ad5c 100644 --- a/crates/swc_ecma_compat_es2018/Cargo.toml +++ b/crates/swc_ecma_compat_es2018/Cargo.toml @@ -17,7 +17,7 @@ serde = { workspace = true, features = ["derive"] } tracing = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_compat_common = { version = "3.0.0", path = "../swc_ecma_compat_common" } swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" } diff --git a/crates/swc_ecma_compat_es2019/Cargo.toml b/crates/swc_ecma_compat_es2019/Cargo.toml index f28e184f0a8d..67c7ef44f032 100644 --- a/crates/swc_ecma_compat_es2019/Cargo.toml +++ b/crates/swc_ecma_compat_es2019/Cargo.toml @@ -17,7 +17,7 @@ tracing = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" } diff --git a/crates/swc_ecma_compat_es2020/Cargo.toml b/crates/swc_ecma_compat_es2020/Cargo.toml index 076346fe5c55..c1183490b8e6 100644 --- a/crates/swc_ecma_compat_es2020/Cargo.toml +++ b/crates/swc_ecma_compat_es2020/Cargo.toml @@ -15,7 +15,7 @@ version = "3.0.0" [dependencies] serde = { workspace = true, features = ["derive"] } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_compat_es2022 = { version = "3.0.0", path = "../swc_ecma_compat_es2022" } swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" } diff --git a/crates/swc_ecma_compat_es2021/Cargo.toml b/crates/swc_ecma_compat_es2021/Cargo.toml index 0858c04a48fa..02f9ef897d71 100644 --- a/crates/swc_ecma_compat_es2021/Cargo.toml +++ b/crates/swc_ecma_compat_es2021/Cargo.toml @@ -16,7 +16,7 @@ version = "3.0.0" tracing = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" } diff --git a/crates/swc_ecma_compat_es2022/Cargo.toml b/crates/swc_ecma_compat_es2022/Cargo.toml index 95732b1dc2cb..2b0ae2ba5674 100644 --- a/crates/swc_ecma_compat_es2022/Cargo.toml +++ b/crates/swc_ecma_compat_es2022/Cargo.toml @@ -17,7 +17,7 @@ tracing = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_compat_common = { version = "3.0.0", path = "../swc_ecma_compat_common" } swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" } diff --git a/crates/swc_ecma_compat_es3/Cargo.toml b/crates/swc_ecma_compat_es3/Cargo.toml index 715db0ebfd03..ae130bd9015a 100644 --- a/crates/swc_ecma_compat_es3/Cargo.toml +++ b/crates/swc_ecma_compat_es3/Cargo.toml @@ -15,7 +15,7 @@ version = "3.0.0" [dependencies] tracing = { workspace = true } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" } diff --git a/crates/swc_ecma_ext_transforms/Cargo.toml b/crates/swc_ecma_ext_transforms/Cargo.toml index 5c2f0cf73d10..349510ab5be4 100644 --- a/crates/swc_ecma_ext_transforms/Cargo.toml +++ b/crates/swc_ecma_ext_transforms/Cargo.toml @@ -15,7 +15,7 @@ bench = false phf = { workspace = true, features = ["macros"] } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit" } diff --git a/crates/swc_ecma_lints/Cargo.toml b/crates/swc_ecma_lints/Cargo.toml index ecd4596932db..c399a4982bb4 100644 --- a/crates/swc_ecma_lints/Cargo.toml +++ b/crates/swc_ecma_lints/Cargo.toml @@ -21,7 +21,7 @@ regex = { workspace = true } serde = { workspace = true, features = ["derive"] } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common", features = [ +swc_common = { version = "2.0.1", path = "../swc_common", features = [ "concurrent", ] } swc_config = { version = "1.0.0", path = "../swc_config" } diff --git a/crates/swc_ecma_loader/Cargo.toml b/crates/swc_ecma_loader/Cargo.toml index b86d69287dc5..fa95bb3111b8 100644 --- a/crates/swc_ecma_loader/Cargo.toml +++ b/crates/swc_ecma_loader/Cargo.toml @@ -38,7 +38,7 @@ tracing = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } swc_cached = { version = "1.0.0", optional = true, path = "../swc_cached" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } [dev-dependencies] lazy_static = { workspace = true } diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index 67ee038f2356..36f29a3ce331 100644 --- a/crates/swc_ecma_minifier/Cargo.toml +++ b/crates/swc_ecma_minifier/Cargo.toml @@ -54,7 +54,7 @@ tracing = { workspace = true } swc_allocator = { version = "1.0.0", path = "../swc_allocator", default-features = false } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_config = { version = "1.0.0", path = "../swc_config", features = [ "sourcemap", ] } diff --git a/crates/swc_ecma_parser/Cargo.toml b/crates/swc_ecma_parser/Cargo.toml index d581534edf18..4b3877bf4d7c 100644 --- a/crates/swc_ecma_parser/Cargo.toml +++ b/crates/swc_ecma_parser/Cargo.toml @@ -37,7 +37,7 @@ typed-arena = { workspace = true } new_debug_unreachable = { workspace = true } phf = { workspace = true, features = ["macros"] } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit", optional = true } diff --git a/crates/swc_ecma_preset_env/Cargo.toml b/crates/swc_ecma_preset_env/Cargo.toml index f7597476327b..cd45850d4e35 100644 --- a/crates/swc_ecma_preset_env/Cargo.toml +++ b/crates/swc_ecma_preset_env/Cargo.toml @@ -30,7 +30,7 @@ preset_env_base = { version = "1.0.0", path = "../preset_env_base" } rustc-hash = { workspace = true } string_enum = { version = "1.0.0", path = "../string_enum" } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_transforms = { version = "3.0.0", path = "../swc_ecma_transforms", features = [ "compat", diff --git a/crates/swc_ecma_quote/Cargo.toml b/crates/swc_ecma_quote/Cargo.toml index 17f60e72f885..0a96bd0b7ff3 100644 --- a/crates/swc_ecma_quote/Cargo.toml +++ b/crates/swc_ecma_quote/Cargo.toml @@ -13,7 +13,7 @@ bench = false [dependencies] swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_quote_macros = { version = "3.0.0", path = "../swc_ecma_quote_macros" } diff --git a/crates/swc_ecma_quote_macros/Cargo.toml b/crates/swc_ecma_quote_macros/Cargo.toml index 4a077e787277..0e8c221b6091 100644 --- a/crates/swc_ecma_quote_macros/Cargo.toml +++ b/crates/swc_ecma_quote_macros/Cargo.toml @@ -19,7 +19,7 @@ quote = { workspace = true } syn = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" } swc_macros_common = { version = "1.0.0", path = "../swc_macros_common" } diff --git a/crates/swc_ecma_transforms/Cargo.toml b/crates/swc_ecma_transforms/Cargo.toml index d5f236339168..a8849133f631 100644 --- a/crates/swc_ecma_transforms/Cargo.toml +++ b/crates/swc_ecma_transforms/Cargo.toml @@ -33,7 +33,7 @@ typescript = ["swc_ecma_transforms_typescript"] [dependencies] swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_compat = { version = "3.0.0", path = "../swc_ecma_transforms_compat", optional = true } diff --git a/crates/swc_ecma_transforms_base/Cargo.toml b/crates/swc_ecma_transforms_base/Cargo.toml index 0a597bd387d8..ccdbbd6de510 100644 --- a/crates/swc_ecma_transforms_base/Cargo.toml +++ b/crates/swc_ecma_transforms_base/Cargo.toml @@ -29,7 +29,7 @@ smallvec = { workspace = true } tracing = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" } swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" } diff --git a/crates/swc_ecma_transforms_classes/Cargo.toml b/crates/swc_ecma_transforms_classes/Cargo.toml index 4aceeb65fe6b..e9d07e51a479 100644 --- a/crates/swc_ecma_transforms_classes/Cargo.toml +++ b/crates/swc_ecma_transforms_classes/Cargo.toml @@ -13,7 +13,7 @@ bench = false [dependencies] swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" } diff --git a/crates/swc_ecma_transforms_compat/Cargo.toml b/crates/swc_ecma_transforms_compat/Cargo.toml index 529ec6cca85f..ea67194cb47a 100644 --- a/crates/swc_ecma_transforms_compat/Cargo.toml +++ b/crates/swc_ecma_transforms_compat/Cargo.toml @@ -30,12 +30,12 @@ smallvec = { workspace = true } tracing = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_config = { version = "1.0.0", path = "../swc_config" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_compat_bugfixes = { version = "3.0.0", path = "../swc_ecma_compat_bugfixes" } swc_ecma_compat_common = { version = "3.0.0", path = "../swc_ecma_compat_common" } -swc_ecma_compat_es2015 = { version = "3.0.0", path = "../swc_ecma_compat_es2015" } +swc_ecma_compat_es2015 = { version = "3.0.1", path = "../swc_ecma_compat_es2015" } swc_ecma_compat_es2016 = { version = "3.0.0", path = "../swc_ecma_compat_es2016" } swc_ecma_compat_es2017 = { version = "3.0.0", path = "../swc_ecma_compat_es2017" } swc_ecma_compat_es2018 = { version = "3.0.0", path = "../swc_ecma_compat_es2018" } diff --git a/crates/swc_ecma_transforms_module/Cargo.toml b/crates/swc_ecma_transforms_module/Cargo.toml index 93465a639aca..42ee0da6807e 100644 --- a/crates/swc_ecma_transforms_module/Cargo.toml +++ b/crates/swc_ecma_transforms_module/Cargo.toml @@ -26,7 +26,7 @@ tracing = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } swc_cached = { version = "1.0.0", path = "../swc_cached" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_loader = { version = "2.0.0", path = "../swc_ecma_loader", features = [ "node", diff --git a/crates/swc_ecma_transforms_optimization/Cargo.toml b/crates/swc_ecma_transforms_optimization/Cargo.toml index df4ed1040457..ffd2f0654ca1 100644 --- a/crates/swc_ecma_transforms_optimization/Cargo.toml +++ b/crates/swc_ecma_transforms_optimization/Cargo.toml @@ -32,7 +32,7 @@ serde_json = { workspace = true } tracing = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" } swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" } diff --git a/crates/swc_ecma_transforms_proposal/Cargo.toml b/crates/swc_ecma_transforms_proposal/Cargo.toml index 58811b285c17..4834b08697ec 100644 --- a/crates/swc_ecma_transforms_proposal/Cargo.toml +++ b/crates/swc_ecma_transforms_proposal/Cargo.toml @@ -23,7 +23,7 @@ serde = { workspace = true, features = ["derive"] } smallvec = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_loader = { version = "2.0.0", path = "../swc_ecma_loader", optional = true } swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" } diff --git a/crates/swc_ecma_transforms_react/Cargo.toml b/crates/swc_ecma_transforms_react/Cargo.toml index c6f6991ff1b0..5a892e8b244d 100644 --- a/crates/swc_ecma_transforms_react/Cargo.toml +++ b/crates/swc_ecma_transforms_react/Cargo.toml @@ -29,7 +29,7 @@ sha1 = { workspace = true } string_enum = { version = "1.0.0", path = "../string_enum" } swc_allocator = { version = "1.0.0", path = "../swc_allocator", default-features = false } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_config = { version = "1.0.0", path = "../swc_config" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" } diff --git a/crates/swc_ecma_transforms_testing/Cargo.toml b/crates/swc_ecma_transforms_testing/Cargo.toml index cf81031398eb..d5825b23a615 100644 --- a/crates/swc_ecma_transforms_testing/Cargo.toml +++ b/crates/swc_ecma_transforms_testing/Cargo.toml @@ -22,7 +22,7 @@ sha2 = { workspace = true } sourcemap = { workspace = true } tempfile = { workspace = true } -swc_common = { version = "2.0.0", path = "../swc_common", features = [ +swc_common = { version = "2.0.1", path = "../swc_common", features = [ "sourcemap", ] } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } diff --git a/crates/swc_ecma_transforms_typescript/Cargo.toml b/crates/swc_ecma_transforms_typescript/Cargo.toml index ebdf0eb501d3..4897173daea2 100644 --- a/crates/swc_ecma_transforms_typescript/Cargo.toml +++ b/crates/swc_ecma_transforms_typescript/Cargo.toml @@ -17,7 +17,7 @@ serde = { workspace = true, features = ["derive"] } ryu-js = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_transforms_base = { version = "3.0.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_react = { version = "3.0.0", path = "../swc_ecma_transforms_react" } diff --git a/crates/swc_ecma_usage_analyzer/Cargo.toml b/crates/swc_ecma_usage_analyzer/Cargo.toml index c8268de7a294..bf4c51dd93f0 100644 --- a/crates/swc_ecma_usage_analyzer/Cargo.toml +++ b/crates/swc_ecma_usage_analyzer/Cargo.toml @@ -28,7 +28,7 @@ rustc-hash = { workspace = true } tracing = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_utils = { version = "3.0.0", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit" } diff --git a/crates/swc_ecma_utils/Cargo.toml b/crates/swc_ecma_utils/Cargo.toml index d2fd77a88fe4..63e221ff869c 100644 --- a/crates/swc_ecma_utils/Cargo.toml +++ b/crates/swc_ecma_utils/Cargo.toml @@ -30,7 +30,7 @@ tracing = { workspace = true } unicode-id = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_visit = { version = "2.0.0", path = "../swc_ecma_visit" } diff --git a/crates/swc_ecma_visit/Cargo.toml b/crates/swc_ecma_visit/Cargo.toml index 221e339fbe01..b73125905b2a 100644 --- a/crates/swc_ecma_visit/Cargo.toml +++ b/crates/swc_ecma_visit/Cargo.toml @@ -27,6 +27,6 @@ serde = { workspace = true, optional = true } tracing = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_visit = { version = "2.0.0", path = "../swc_visit" } diff --git a/crates/swc_error_reporters/Cargo.toml b/crates/swc_error_reporters/Cargo.toml index 60feafe3838c..cbeebb208ffe 100644 --- a/crates/swc_error_reporters/Cargo.toml +++ b/crates/swc_error_reporters/Cargo.toml @@ -17,6 +17,6 @@ miette = { workspace = true, features = ["fancy-no-syscall"] } once_cell = { workspace = true } parking_lot = { workspace = true } -swc_common = { version = "2.0.0", path = "../swc_common", features = [ +swc_common = { version = "2.0.1", path = "../swc_common", features = [ "concurrent", ] } diff --git a/crates/swc_estree_ast/Cargo.toml b/crates/swc_estree_ast/Cargo.toml index c7f69c395c2f..1a384119f06a 100644 --- a/crates/swc_estree_ast/Cargo.toml +++ b/crates/swc_estree_ast/Cargo.toml @@ -27,4 +27,4 @@ serde_json = { workspace = true } better_scoped_tls = { version = "1.0.0", path = "../better_scoped_tls" } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } diff --git a/crates/swc_estree_compat/Cargo.toml b/crates/swc_estree_compat/Cargo.toml index 4432592e6e50..817c8a519a71 100644 --- a/crates/swc_estree_compat/Cargo.toml +++ b/crates/swc_estree_compat/Cargo.toml @@ -25,7 +25,7 @@ serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common", features = [ +swc_common = { version = "2.0.1", path = "../swc_common", features = [ "sourcemap", "tty-emitter", ] } @@ -41,7 +41,7 @@ codspeed-criterion-compat = { workspace = true } criterion = { workspace = true } pretty_assertions = { workspace = true } -swc = { version = "3.0.0", path = "../swc" } +swc = { version = "3.0.1", path = "../swc" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "3.0.0", path = "../swc_ecma_parser" } swc_ecma_transforms = { version = "3.0.0", path = "../swc_ecma_transforms/" } diff --git a/crates/swc_fast_graph/Cargo.toml b/crates/swc_fast_graph/Cargo.toml index 0ba3805c34d7..714eb676845f 100644 --- a/crates/swc_fast_graph/Cargo.toml +++ b/crates/swc_fast_graph/Cargo.toml @@ -16,4 +16,4 @@ indexmap = { workspace = true } petgraph = { workspace = true } rustc-hash = { workspace = true } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } diff --git a/crates/swc_fast_ts_strip/Cargo.toml b/crates/swc_fast_ts_strip/Cargo.toml index e12f48bc50a1..725d1812962c 100644 --- a/crates/swc_fast_ts_strip/Cargo.toml +++ b/crates/swc_fast_ts_strip/Cargo.toml @@ -17,7 +17,7 @@ wasm-bindgen = { workspace = true, optional = true } swc_allocator = { version = "1.0.0", path = "../swc_allocator", default-features = false } -swc_common = { version = "2.0.0", path = "../swc_common", features = [ +swc_common = { version = "2.0.1", path = "../swc_common", features = [ "sourcemap", ] } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } diff --git a/crates/swc_graph_analyzer/Cargo.toml b/crates/swc_graph_analyzer/Cargo.toml index e3fa055ecd58..695419c81bfd 100644 --- a/crates/swc_graph_analyzer/Cargo.toml +++ b/crates/swc_graph_analyzer/Cargo.toml @@ -14,7 +14,7 @@ bench = false [dependencies] auto_impl = { workspace = true } petgraph = { workspace = true } -swc_common = { version = "2.0.0", path = "../swc_common/" } +swc_common = { version = "2.0.1", path = "../swc_common/" } swc_fast_graph = { version = "3.0.0", path = "../swc_fast_graph/" } tracing = { workspace = true } diff --git a/crates/swc_html_ast/Cargo.toml b/crates/swc_html_ast/Cargo.toml index 2793338f15f0..f3f7e16d2d35 100644 --- a/crates/swc_html_ast/Cargo.toml +++ b/crates/swc_html_ast/Cargo.toml @@ -26,4 +26,4 @@ serde = { workspace = true, features = ["derive"], optional = true } string_enum = { version = "1.0.0", path = "../string_enum/" } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } diff --git a/crates/swc_html_codegen/Cargo.toml b/crates/swc_html_codegen/Cargo.toml index 2adcf70f21ee..84c1f4c1cc9d 100644 --- a/crates/swc_html_codegen/Cargo.toml +++ b/crates/swc_html_codegen/Cargo.toml @@ -21,13 +21,13 @@ bitflags = { workspace = true } rustc-hash = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_html_ast = { version = "2.0.0", path = "../swc_html_ast" } swc_html_codegen_macros = { version = "1.0.0", path = "../swc_html_codegen_macros" } swc_html_utils = { version = "2.0.0", path = "../swc_html_utils" } [dev-dependencies] -swc_common = { version = "2.0.0", path = "../swc_common", features = [ +swc_common = { version = "2.0.1", path = "../swc_common", features = [ "sourcemap", ] } swc_html_parser = { version = "2.0.0", path = "../swc_html_parser" } diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 7e81b63c83c1..c866deb20e9e 100644 --- a/crates/swc_html_minifier/Cargo.toml +++ b/crates/swc_html_minifier/Cargo.toml @@ -27,7 +27,7 @@ serde_json = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } swc_cached = { version = "1.0.0", path = "../swc_cached" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_css_ast = { version = "2.0.0", path = "../swc_css_ast", optional = true } swc_css_codegen = { version = "2.0.0", path = "../swc_css_codegen", optional = true } swc_css_minifier = { version = "2.0.0", path = "../swc_css_minifier", optional = true } diff --git a/crates/swc_html_parser/Cargo.toml b/crates/swc_html_parser/Cargo.toml index d8c89898e0ce..e9135ad372d2 100644 --- a/crates/swc_html_parser/Cargo.toml +++ b/crates/swc_html_parser/Cargo.toml @@ -20,7 +20,7 @@ debug = [] [dependencies] swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_html_ast = { version = "2.0.0", path = "../swc_html_ast" } swc_html_utils = { version = "2.0.0", path = "../swc_html_utils" } diff --git a/crates/swc_html_utils/Cargo.toml b/crates/swc_html_utils/Cargo.toml index b6066f9a711c..fc5085d77c74 100644 --- a/crates/swc_html_utils/Cargo.toml +++ b/crates/swc_html_utils/Cargo.toml @@ -21,4 +21,4 @@ serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } diff --git a/crates/swc_html_visit/Cargo.toml b/crates/swc_html_visit/Cargo.toml index 1059d19e3b3b..6912dd7cd1e2 100644 --- a/crates/swc_html_visit/Cargo.toml +++ b/crates/swc_html_visit/Cargo.toml @@ -26,6 +26,6 @@ path = [] serde = { workspace = true, optional = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_html_ast = { version = "2.0.0", path = "../swc_html_ast" } swc_visit = { version = "2.0.0", path = "../swc_visit" } diff --git a/crates/swc_node_bundler/Cargo.toml b/crates/swc_node_bundler/Cargo.toml index 643a40e6d6be..d5b836c960ab 100644 --- a/crates/swc_node_bundler/Cargo.toml +++ b/crates/swc_node_bundler/Cargo.toml @@ -29,12 +29,12 @@ serde_json = { workspace = true } tracing = { workspace = true } string_enum = { version = "1.0.0", path = "../string_enum" } -swc = { version = "3.0.0", path = "../swc" } +swc = { version = "3.0.1", path = "../swc" } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } swc_bundler = { version = "3.0.0", path = "../swc_bundler", features = [ "concurrent", ] } -swc_common = { version = "2.0.0", path = "../swc_common", features = [ +swc_common = { version = "2.0.1", path = "../swc_common", features = [ "concurrent", ] } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } diff --git a/crates/swc_node_comments/Cargo.toml b/crates/swc_node_comments/Cargo.toml index a43c6dbae4a3..529bcfcc00c2 100644 --- a/crates/swc_node_comments/Cargo.toml +++ b/crates/swc_node_comments/Cargo.toml @@ -18,4 +18,4 @@ bench = false dashmap = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } diff --git a/crates/swc_plugin_proxy/Cargo.toml b/crates/swc_plugin_proxy/Cargo.toml index d852e6e85ebc..dbacc39a988b 100644 --- a/crates/swc_plugin_proxy/Cargo.toml +++ b/crates/swc_plugin_proxy/Cargo.toml @@ -26,6 +26,6 @@ rkyv = { workspace = true, features = ["validation"], optional = true } tracing = { workspace = true } better_scoped_tls = { version = "1.0.0", path = "../better_scoped_tls" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } swc_trace_macro = { version = "2.0.0", path = "../swc_trace_macro" } diff --git a/crates/swc_plugin_runner/Cargo.toml b/crates/swc_plugin_runner/Cargo.toml index ea8faa3cc6cf..ea4730348cd1 100644 --- a/crates/swc_plugin_runner/Cargo.toml +++ b/crates/swc_plugin_runner/Cargo.toml @@ -63,7 +63,7 @@ virtual-fs = { workspace = true } wasmer = { workspace = true } wasmer-wasix = { workspace = true } -swc_common = { version = "2.0.0", path = "../swc_common", features = [ +swc_common = { version = "2.0.1", path = "../swc_common", features = [ "concurrent", ] } swc_css_ast = { version = "2.0.0", path = "../swc_css_ast", optional = true } diff --git a/crates/swc_typescript/Cargo.toml b/crates/swc_typescript/Cargo.toml index dbd2b2b68b67..4db2e5e57e5e 100644 --- a/crates/swc_typescript/Cargo.toml +++ b/crates/swc_typescript/Cargo.toml @@ -12,7 +12,7 @@ version = "2.0.0" thiserror = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" } diff --git a/crates/swc_xml_ast/Cargo.toml b/crates/swc_xml_ast/Cargo.toml index 138d52a18e2b..ad30e6ff0b5d 100644 --- a/crates/swc_xml_ast/Cargo.toml +++ b/crates/swc_xml_ast/Cargo.toml @@ -23,4 +23,4 @@ serde = { workspace = true, features = ["derive"], optional = true } string_enum = { version = "1.0.0", path = "../string_enum/" } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } diff --git a/crates/swc_xml_codegen/Cargo.toml b/crates/swc_xml_codegen/Cargo.toml index 5795048ae0e1..8f007e9765d6 100644 --- a/crates/swc_xml_codegen/Cargo.toml +++ b/crates/swc_xml_codegen/Cargo.toml @@ -21,12 +21,12 @@ bitflags = { workspace = true } rustc-hash = { workspace = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_xml_ast = { version = "2.0.0", path = "../swc_xml_ast" } swc_xml_codegen_macros = { version = "1.0.0", path = "../swc_xml_codegen_macros" } [dev-dependencies] -swc_common = { version = "2.0.0", path = "../swc_common", features = [ +swc_common = { version = "2.0.1", path = "../swc_common", features = [ "sourcemap", ] } swc_xml_parser = { version = "2.0.0", path = "../swc_xml_parser" } diff --git a/crates/swc_xml_parser/Cargo.toml b/crates/swc_xml_parser/Cargo.toml index b91763f45bab..8b567171d9ab 100644 --- a/crates/swc_xml_parser/Cargo.toml +++ b/crates/swc_xml_parser/Cargo.toml @@ -20,7 +20,7 @@ debug = [] [dependencies] swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_xml_ast = { version = "2.0.0", path = "../swc_xml_ast" } [dev-dependencies] diff --git a/crates/swc_xml_visit/Cargo.toml b/crates/swc_xml_visit/Cargo.toml index b1ce4164fd80..203bd075ef5f 100644 --- a/crates/swc_xml_visit/Cargo.toml +++ b/crates/swc_xml_visit/Cargo.toml @@ -26,6 +26,6 @@ path = [] serde = { workspace = true, optional = true } swc_atoms = { version = "2.0.0", path = "../swc_atoms" } -swc_common = { version = "2.0.0", path = "../swc_common" } +swc_common = { version = "2.0.1", path = "../swc_common" } swc_visit = { version = "2.0.0", path = "../swc_visit" } swc_xml_ast = { version = "2.0.0", path = "../swc_xml_ast" } diff --git a/crates/testing/Cargo.toml b/crates/testing/Cargo.toml index 049b79a9dcd3..74b74017dc25 100644 --- a/crates/testing/Cargo.toml +++ b/crates/testing/Cargo.toml @@ -23,7 +23,7 @@ serde_json = { workspace = true } tracing = { workspace = true } tracing-subscriber = { workspace = true, features = ["env-filter"] } -swc_common = { version = "2.0.0", path = "../swc_common", features = [ +swc_common = { version = "2.0.1", path = "../swc_common", features = [ "tty-emitter", ] } swc_error_reporters = { version = "3.0.0", path = "../swc_error_reporters" }