Skip to content

Commit 477897f

Browse files
committed
chore: Publish crates with swc_core v10.3.0
1 parent f230ff2 commit 477897f

File tree

25 files changed

+34
-45
lines changed

25 files changed

+34
-45
lines changed

.changeset/calm-pumpkins-explain.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/mean-boxes-design.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313

1414
- **(es/ts_strip)** Handle ASI hazard in return statement ([#9882](https://github.com/swc-project/swc/issues/9882)) ([121b5fe](https://github.com/swc-project/swc/commit/121b5fefbc17932816f69c88edc14f8387c493e9))
1515

16+
17+
- **(typescript)** Collect usages in extend clauses of classes and interfaces ([#9893](https://github.com/swc-project/swc/issues/9893)) ([ef29ef6](https://github.com/swc-project/swc/commit/ef29ef6a225927ccdd3d98751f9a2cfef88ca237))
18+
1619
### Features
1720

1821

@@ -26,6 +29,9 @@
2629
- **(bench)** Run benchmark on a custom runner ([#9877](https://github.com/swc-project/swc/issues/9877)) ([2d6f9a5](https://github.com/swc-project/swc/commit/2d6f9a5c27803257635b4b008c5d3b0592478e1d))
2730

2831

32+
- **(es/codegen)** Remove needless allocations ([#9890](https://github.com/swc-project/swc/issues/9890)) ([f230ff2](https://github.com/swc-project/swc/commit/f230ff2d8454808ffa99c298448eba7522597219))
33+
34+
2935
- **(es/minifier)** Make the first run of DCE more efficient ([#9868](https://github.com/swc-project/swc/issues/9868)) ([7329824](https://github.com/swc-project/swc/commit/7329824b825663c6c51c48dd5ace097da87e2c88))
3036

3137

@@ -1554,12 +1560,6 @@
15541560

15551561

15561562

1557-
- **(es/parser)** Optimize macros ([#9100](https://github.com/swc-project/swc/issues/9100)) ([719b7c5](https://github.com/swc-project/swc/commit/719b7c54f69ef276270dc39fbcb8bbdbf52899bf))
1558-
1559-
1560-
- **(es/parser)** Remove unnecessary check ([#9102](https://github.com/swc-project/swc/issues/9102)) ([2a490ad](https://github.com/swc-project/swc/commit/2a490ad0b2f9f89260742e653ba9ca086c1a9798))
1561-
1562-
15631563
- **(es/parser)** Add a check before numeric operations ([#9105](https://github.com/swc-project/swc/issues/9105)) ([c0602c8](https://github.com/swc-project/swc/commit/c0602c81db55777be726cd8fe2fd074e34bd4d96))
15641564

15651565

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/dbg-swc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ swc_common = { version = "5.0.0", features = [
3232
"tty-emitter",
3333
], path = "../swc_common" }
3434
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
35-
swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" }
35+
swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" }
3636
swc_ecma_minifier = { version = "7.1.0", path = "../swc_ecma_minifier", features = [
3737
"concurrent",
3838
] }

crates/swc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ swc_common = { version = "5.0.0", path = "../swc_common", features = [
8080
swc_compiler_base = { version = "8.0.0", path = "../swc_compiler_base" }
8181
swc_config = { version = "1.0.0", path = "../swc_config" }
8282
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
83-
swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" }
83+
swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" }
8484
swc_ecma_ext_transforms = { version = "7.0.0", path = "../swc_ecma_ext_transforms" }
8585
swc_ecma_lints = { version = "7.0.0", path = "../swc_ecma_lints" }
8686
swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", features = [
@@ -110,7 +110,7 @@ swc_plugin_proxy = { version = "5.0.0", path = "../swc_plugin_proxy", optional =
110110
swc_plugin_runner = { version = "5.1.0", path = "../swc_plugin_runner", optional = true, default-features = false }
111111
swc_timer = { version = "1.0.0", path = "../swc_timer" }
112112
swc_transform_common = { version = "1.0.0", path = "../swc_transform_common" }
113-
swc_typescript = { version = "6.1.0", path = "../swc_typescript" }
113+
swc_typescript = { version = "6.1.1", path = "../swc_typescript" }
114114
swc_visit = { version = "2.0.0", path = "../swc_visit" }
115115

116116
[dependencies.tokio]

crates/swc_bundler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ tracing = { workspace = true }
4040
swc_atoms = { version = "3.0.3", path = "../swc_atoms" }
4141
swc_common = { version = "5.0.0", path = "../swc_common" }
4242
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
43-
swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" }
43+
swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" }
4444
swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader" }
4545
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
4646
swc_ecma_transforms_base = { version = "7.1.0", path = "../swc_ecma_transforms_base" }

crates/swc_cli_impl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ tracing-futures = { workspace = true }
3939
tracing-subscriber = { workspace = true, features = ["env-filter"] }
4040
walkdir = { workspace = true }
4141

42-
swc_core = { version = "10.2.5", features = [
42+
swc_core = { version = "10.3.0", features = [
4343
"trace_macro",
4444
"common_concurrent",
4545
"base_concurrent",

crates/swc_compiler_base/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ swc_common = { version = "5.0.0", path = "../swc_common", features = [
2929
] }
3030
swc_config = { version = "1.0.0", path = "../swc_config" }
3131
swc_ecma_ast = { version = "5.0.2", path = "../swc_ecma_ast" }
32-
swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" }
32+
swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" }
3333
swc_ecma_minifier = { version = "7.1.0", path = "../swc_ecma_minifier" }
3434
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
3535
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }

crates/swc_core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = { workspace = true }
66
license = { workspace = true }
77
name = "swc_core"
88
repository = { workspace = true }
9-
version = "10.2.5"
9+
version = "10.3.0"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"allocator_node",
@@ -354,7 +354,7 @@ swc_css_prefixer = { optional = true, version = "5.0.0", path =
354354
swc_css_utils = { optional = true, version = "5.0.0", path = "../swc_css_utils/" }
355355
swc_css_visit = { optional = true, version = "5.0.0", path = "../swc_css_visit" }
356356
swc_ecma_ast = { optional = true, version = "5.0.2", path = "../swc_ecma_ast" }
357-
swc_ecma_codegen = { optional = true, version = "5.0.1", path = "../swc_ecma_codegen" }
357+
swc_ecma_codegen = { optional = true, version = "5.1.0", path = "../swc_ecma_codegen" }
358358
swc_ecma_lints = { optional = true, version = "7.0.0", path = "../swc_ecma_lints" }
359359
swc_ecma_loader = { optional = true, version = "5.0.0", path = "../swc_ecma_loader" }
360360
swc_ecma_minifier = { optional = true, version = "7.1.0", path = "../swc_ecma_minifier" }
@@ -380,7 +380,7 @@ swc_plugin_macro = { optional = true, version = "1.0.0", path =
380380
swc_plugin_proxy = { optional = true, version = "5.0.0", path = "../swc_plugin_proxy" }
381381
swc_trace_macro = { optional = true, version = "2.0.0", path = "../swc_trace_macro" }
382382
swc_transform_common = { optional = true, version = "1.0.0", path = "../swc_transform_common" }
383-
swc_typescript = { optional = true, version = "6.1.0", path = "../swc_typescript" }
383+
swc_typescript = { optional = true, version = "6.1.1", path = "../swc_typescript" }
384384
testing = { optional = true, version = "5.0.0", path = "../testing" }
385385
# TODO: eventually swc_plugin_runner needs to remove default features
386386
swc_allocator = { version = "2.0.0", path = "../swc_allocator", default-features = false }

0 commit comments

Comments
 (0)