diff --git a/.changeset/sweet-ladybugs-lick.md b/.changeset/sweet-ladybugs-lick.md deleted file mode 100644 index 482a74872503..000000000000 --- a/.changeset/sweet-ladybugs-lick.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -swc: patch -swc_core: patch ---- - -fix(es): Restore JSON config diff --git a/CHANGELOG.md b/CHANGELOG.md index 524832804d0a..82a9536b2f6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ +- **(es)** Restore JSON config & Adjust feature renaming ([#9967](https://github.com/swc-project/swc/issues/9967)) ([72e5455](https://github.com/swc-project/swc/commit/72e545575bea0a12614889861d839578581af170)) + + - **(es/minifier)** Avoid paren when compressing ternary ([#9920](https://github.com/swc-project/swc/issues/9920)) ([9d6fe37](https://github.com/swc-project/swc/commit/9d6fe370cff502b00245c409bbbc9a3d00e622fe)) diff --git a/Cargo.lock b/Cargo.lock index 922ac0e38984..d1a59ccd3f41 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4490,7 +4490,7 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "swc" -version = "11.0.0" +version = "11.0.1" dependencies = [ "ansi_term", "anyhow", @@ -4758,7 +4758,7 @@ dependencies = [ [[package]] name = "swc_core" -version = "11.0.0" +version = "11.0.1" dependencies = [ "anyhow", "binding_macros", diff --git a/crates/binding_macros/Cargo.toml b/crates/binding_macros/Cargo.toml index c6592a844357..43ffd35d9384 100644 --- a/crates/binding_macros/Cargo.toml +++ b/crates/binding_macros/Cargo.toml @@ -33,7 +33,7 @@ binding_wasm = [ [dependencies] # Common deps for the SWC imports -swc = { optional = true, version = "11.0.0", path = "../swc" } +swc = { optional = true, version = "11.0.1", path = "../swc" } swc_common = { optional = true, version = "5.0.1", path = "../swc_common" } swc_ecma_ast = { optional = true, version = "5.1.0", path = "../swc_ecma_ast" } swc_ecma_transforms = { optional = true, version = "10.0.0", path = "../swc_ecma_transforms" } diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 468c32ee8a62..2034039fbbe9 100644 --- a/crates/swc/Cargo.toml +++ b/crates/swc/Cargo.toml @@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = { workspace = true } name = "swc" repository = { workspace = true } -version = "11.0.0" +version = "11.0.1" [lib] bench = false diff --git a/crates/swc_cli_impl/Cargo.toml b/crates/swc_cli_impl/Cargo.toml index 15385e481fd2..c4c4cc64d203 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 = "11.0.0", features = [ +swc_core = { version = "11.0.1", features = [ "trace_macro", "common_concurrent", "base_concurrent", diff --git a/crates/swc_core/Cargo.toml b/crates/swc_core/Cargo.toml index dc9ed677cffa..eca648454cd7 100644 --- a/crates/swc_core/Cargo.toml +++ b/crates/swc_core/Cargo.toml @@ -6,7 +6,7 @@ edition = { workspace = true } license = { workspace = true } name = "swc_core" repository = { workspace = true } -version = "11.0.0" +version = "11.0.1" [package.metadata.docs.rs] features = [ "allocator_node", @@ -339,7 +339,7 @@ once_cell = { workspace = true, optional = true } # swc_* dependencies binding_macros = { optional = true, version = "11.0.0", path = "../binding_macros" } -swc = { optional = true, version = "11.0.0", path = "../swc" } +swc = { optional = true, version = "11.0.1", path = "../swc" } swc_atoms = { optional = true, version = "3.0.4", path = "../swc_atoms" } swc_bundler = { optional = true, version = "8.0.0", path = "../swc_bundler" } swc_cached = { optional = true, version = "1.0.0", path = "../swc_cached" } diff --git a/crates/swc_estree_compat/Cargo.toml b/crates/swc_estree_compat/Cargo.toml index dbddc7d7a062..39110c873e8f 100644 --- a/crates/swc_estree_compat/Cargo.toml +++ b/crates/swc_estree_compat/Cargo.toml @@ -41,7 +41,7 @@ codspeed-criterion-compat = { workspace = true } criterion = { workspace = true } pretty_assertions = { workspace = true } -swc = { version = "11.0.0", path = "../swc" } +swc = { version = "11.0.1", path = "../swc" } swc_ecma_ast = { version = "5.1.0", path = "../swc_ecma_ast" } swc_ecma_parser = { version = "7.0.0", path = "../swc_ecma_parser" } swc_ecma_transforms = { version = "10.0.0", path = "../swc_ecma_transforms/" } diff --git a/crates/swc_node_bundler/Cargo.toml b/crates/swc_node_bundler/Cargo.toml index a81c54e6694e..1e053195c359 100644 --- a/crates/swc_node_bundler/Cargo.toml +++ b/crates/swc_node_bundler/Cargo.toml @@ -29,7 +29,7 @@ serde_json = { workspace = true } tracing = { workspace = true } string_enum = { version = "1.0.0", path = "../string_enum" } -swc = { version = "11.0.0", path = "../swc" } +swc = { version = "11.0.1", path = "../swc" } swc_atoms = { version = "3.0.4", path = "../swc_atoms" } swc_bundler = { version = "8.0.0", path = "../swc_bundler", features = [ "concurrent",