Skip to content

Commit ad66dc0

Browse files
committed
chore: Publish crates with swc_core v9.0.3
1 parent 556d924 commit ad66dc0

File tree

24 files changed

+32
-33
lines changed

24 files changed

+32
-33
lines changed

.changeset/chilly-zoos-applaud.md

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

CHANGELOG.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Changelog
2+
## [unreleased]
3+
4+
### Bug Fixes
5+
6+
7+
8+
- **(es/codegen)** Emit semicolon after using declarations ([#9816](https://github.com/swc-project/swc/issues/9816)) ([556d924](https://github.com/swc-project/swc/commit/556d924cf53c2d3a7577bbfbb2b467d41834c23e))
9+
210
## [1.10.2] - 2024-12-26
311

412
### Bug Fixes
@@ -1481,9 +1489,6 @@
14811489
- **(es/lints)** Avoid needless allocations in `no-dupe-args` ([#9041](https://github.com/swc-project/swc/issues/9041)) ([e560198](https://github.com/swc-project/swc/commit/e5601989a1fa699c3d4f7f120bd14f946eee01fa))
14821490

14831491

1484-
- **(es/parser)** Do not track `raw` by hand ([#9047](https://github.com/swc-project/swc/issues/9047)) ([60fe5f0](https://github.com/swc-project/swc/commit/60fe5f0effdcc45f0cfd363fd0ff4e6f4dba5b33))
1485-
1486-
14871492
- **(es/parser)** Reduce allocations for `raw` while lexing numbers ([#9056](https://github.com/swc-project/swc/issues/9056)) ([bc8ec62](https://github.com/swc-project/swc/commit/bc8ec625ecee8a077fe84de371c490be14a1a033))
14881493

14891494
### Refactor

Cargo.lock

Lines changed: 2 additions & 2 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.0", path = "../swc_ecma_ast" }
35-
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
35+
swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" }
3636
swc_ecma_minifier = { version = "6.0.1", path = "../swc_ecma_minifier", features = [
3737
"concurrent",
3838
] }

crates/swc/Cargo.toml

Lines changed: 1 addition & 1 deletion
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 = "7.0.0", path = "../swc_compiler_base" }
8181
swc_config = { version = "1.0.0", path = "../swc_config" }
8282
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
83-
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
83+
swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" }
8484
swc_ecma_ext_transforms = { version = "6.0.0", path = "../swc_ecma_ext_transforms" }
8585
swc_ecma_lints = { version = "6.0.0", path = "../swc_ecma_lints" }
8686
swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", features = [

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.0", path = "../swc_atoms" }
4141
swc_common = { version = "5.0.0", path = "../swc_common" }
4242
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
43-
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
43+
swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" }
4444
swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader" }
4545
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
4646
swc_ecma_transforms_base = { version = "6.0.2", 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 = "9.0.2", features = [
42+
swc_core = { version = "9.0.3", 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.0", path = "../swc_ecma_ast" }
32-
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
32+
swc_ecma_codegen = { version = "5.0.1", path = "../swc_ecma_codegen" }
3333
swc_ecma_minifier = { version = "6.0.1", path = "../swc_ecma_minifier" }
3434
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
3535
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }

crates/swc_core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "swc_core"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "9.0.2"
9+
version = "9.0.3"
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.0", path = "../swc_ecma_ast" }
357-
swc_ecma_codegen = { optional = true, version = "5.0.0", path = "../swc_ecma_codegen" }
357+
swc_ecma_codegen = { optional = true, version = "5.0.1", path = "../swc_ecma_codegen" }
358358
swc_ecma_lints = { optional = true, version = "6.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 = "6.0.1", path = "../swc_ecma_minifier" }

crates/swc_ecma_codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
77
license = "Apache-2.0"
88
name = "swc_ecma_codegen"
99
repository = "https://github.com/swc-project/swc.git"
10-
version = "5.0.0"
10+
version = "5.0.1"
1111

1212
[features]
1313
# This does not enable serde for ast nodes.

0 commit comments

Comments
 (0)