Skip to content

Commit 1ef37a0

Browse files
committed
chore: Publish crates with swc_core v9.0.0
1 parent e04c7b3 commit 1ef37a0

File tree

14 files changed

+43
-45
lines changed

14 files changed

+43
-45
lines changed

.changeset/heavy-apes-collect.md

-5
This file was deleted.

CHANGELOG.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77

88
- **(es/resolver)** Fix wrong syntax context of vars with the same names as catch params ([#9786](https://github.com/swc-project/swc/issues/9786)) ([5a44c6b](https://github.com/swc-project/swc/commit/5a44c6b42471aeceb3771b1cf4ebb310d03a0154))
99

10+
### Features
11+
12+
13+
14+
- **(es/transforms)** Add `module.outFileExtension` ([#9784](https://github.com/swc-project/swc/issues/9784)) ([e04c7b3](https://github.com/swc-project/swc/commit/e04c7b31fcc776ec990ea33f988e2ed38c78962c))
15+
1016
## [1.10.0] - 2024-12-04
1117

1218
### Bug Fixes
@@ -1487,9 +1493,6 @@
14871493

14881494

14891495

1490-
- **(ci)** Make publish action upload cli artifacts ([#9040](https://github.com/swc-project/swc/issues/9040)) ([3337bb2](https://github.com/swc-project/swc/commit/3337bb26f9b00352c3f03c625f1429ee15ebc070))
1491-
1492-
14931496
- **(xtask)** Fix `nightly` action ([#9042](https://github.com/swc-project/swc/issues/9042)) ([733dcc6](https://github.com/swc-project/swc/commit/733dcc6b83e77a2571a3fee307a73fc0c17bd44c))
14941497

14951498
<!-- generated by git-cliff -->

Cargo.lock

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/binding_macros/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
license = "Apache-2.0"
66
name = "binding_macros"
77
repository = "https://github.com/swc-project/swc.git"
8-
version = "8.0.0"
8+
version = "9.0.0"
99

1010
[lib]
1111
bench = false
@@ -33,10 +33,10 @@ binding_wasm = [
3333

3434
[dependencies]
3535
# Common deps for the SWC imports
36-
swc = { optional = true, version = "8.0.0", path = "../swc" }
36+
swc = { optional = true, version = "9.0.0", path = "../swc" }
3737
swc_common = { optional = true, version = "5.0.0", path = "../swc_common" }
3838
swc_ecma_ast = { optional = true, version = "5.0.0", path = "../swc_ecma_ast" }
39-
swc_ecma_transforms = { optional = true, version = "7.0.0", path = "../swc_ecma_transforms" }
39+
swc_ecma_transforms = { optional = true, version = "8.0.0", path = "../swc_ecma_transforms" }
4040
swc_ecma_visit = { optional = true, version = "5.0.0", path = "../swc_ecma_visit" }
4141

4242
# Optional deps for the wasm binding macro

crates/swc/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
99
license = "Apache-2.0"
1010
name = "swc"
1111
repository = "https://github.com/swc-project/swc.git"
12-
version = "8.0.0"
12+
version = "9.0.0"
1313

1414
[lib]
1515
bench = false
@@ -90,8 +90,8 @@ swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", features = [
9090
] }
9191
swc_ecma_minifier = { version = "6.0.1", path = "../swc_ecma_minifier" }
9292
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
93-
swc_ecma_preset_env = { version = "7.0.0", path = "../swc_ecma_preset_env" }
94-
swc_ecma_transforms = { version = "7.0.0", path = "../swc_ecma_transforms", features = [
93+
swc_ecma_preset_env = { version = "8.0.0", path = "../swc_ecma_preset_env" }
94+
swc_ecma_transforms = { version = "8.0.0", path = "../swc_ecma_transforms", features = [
9595
"compat",
9696
"module",
9797
"optimization",

crates/swc_cli_impl/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
66
license = "Apache-2.0"
77
name = "swc_cli_impl"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "8.0.0"
9+
version = "9.0.0"
1010

1111
[[bin]]
1212
name = "swc"
@@ -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 = "8.0.2", features = [
42+
swc_core = { version = "9.0.0", features = [
4343
"trace_macro",
4444
"common_concurrent",
4545
"base_concurrent",

crates/swc_core/Cargo.toml

+6-6
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 = "8.0.2"
9+
version = "9.0.0"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"allocator_node",
@@ -338,8 +338,8 @@ __visit = ["__ecma", "swc_ecma_visit"]
338338
once_cell = { workspace = true, optional = true }
339339

340340
# swc_* dependencies
341-
binding_macros = { optional = true, version = "8.0.0", path = "../binding_macros" }
342-
swc = { optional = true, version = "8.0.0", path = "../swc" }
341+
binding_macros = { optional = true, version = "9.0.0", path = "../binding_macros" }
342+
swc = { optional = true, version = "9.0.0", path = "../swc" }
343343
swc_atoms = { optional = true, version = "3.0.0", path = "../swc_atoms" }
344344
swc_bundler = { optional = true, version = "6.0.0", path = "../swc_bundler" }
345345
swc_cached = { optional = true, version = "1.0.0", path = "../swc_cached" }
@@ -359,11 +359,11 @@ swc_ecma_lints = { optional = true, version = "6.0.0", path =
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" }
361361
swc_ecma_parser = { optional = true, version = "6.0.0", path = "../swc_ecma_parser" }
362-
swc_ecma_preset_env = { optional = true, version = "7.0.0", path = "../swc_ecma_preset_env" }
362+
swc_ecma_preset_env = { optional = true, version = "8.0.0", path = "../swc_ecma_preset_env" }
363363
swc_ecma_quote_macros = { optional = true, version = "6.0.0", path = "../swc_ecma_quote_macros" }
364364
swc_ecma_transforms_base = { optional = true, version = "6.0.2", path = "../swc_ecma_transforms_base" }
365365
swc_ecma_transforms_compat = { optional = true, version = "7.0.0", path = "../swc_ecma_transforms_compat" }
366-
swc_ecma_transforms_module = { optional = true, version = "6.0.0", path = "../swc_ecma_transforms_module" }
366+
swc_ecma_transforms_module = { optional = true, version = "7.0.0", path = "../swc_ecma_transforms_module" }
367367
swc_ecma_transforms_optimization = { optional = true, version = "6.0.0", path = "../swc_ecma_transforms_optimization" }
368368
swc_ecma_transforms_proposal = { optional = true, version = "6.0.0", path = "../swc_ecma_transforms_proposal" }
369369
swc_ecma_transforms_react = { optional = true, version = "6.0.0", path = "../swc_ecma_transforms_react" }
@@ -373,7 +373,7 @@ swc_ecma_usage_analyzer = { optional = true, version = "6.0.0", path =
373373
swc_ecma_utils = { optional = true, version = "6.0.0", path = "../swc_ecma_utils" }
374374
swc_ecma_visit = { optional = true, version = "5.0.0", path = "../swc_ecma_visit" }
375375
swc_malloc = { optional = true, version = "1.0.0", path = "../swc_malloc" }
376-
swc_node_bundler = { optional = true, version = "8.0.0", path = "../swc_node_bundler" }
376+
swc_node_bundler = { optional = true, version = "9.0.0", path = "../swc_node_bundler" }
377377
swc_nodejs_common = { optional = true, version = "1.0.0", path = "../swc_nodejs_common" }
378378
swc_plugin = { optional = true, version = "1.0.0", path = "../swc_plugin" }
379379
swc_plugin_macro = { optional = true, version = "1.0.0", path = "../swc_plugin_macro" }

crates/swc_ecma_preset_env/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
77
license = "Apache-2.0"
88
name = "swc_ecma_preset_env"
99
repository = { workspace = true }
10-
version = "7.0.0"
10+
version = "8.0.0"
1111

1212
[lib]
1313
bench = false
@@ -32,7 +32,7 @@ string_enum = { version = "1.0.0", path = "../string_enum" }
3232
swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
3333
swc_common = { version = "5.0.0", path = "../swc_common" }
3434
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
35-
swc_ecma_transforms = { version = "7.0.0", path = "../swc_ecma_transforms", features = [
35+
swc_ecma_transforms = { version = "8.0.0", path = "../swc_ecma_transforms", features = [
3636
"compat",
3737
"proposal",
3838
] }

crates/swc_ecma_transforms/Cargo.toml

+2-2
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_transforms"
99
repository = "https://github.com/swc-project/swc.git"
10-
version = "7.0.0"
10+
version = "8.0.0"
1111

1212
[package.metadata.docs.rs]
1313
all-features = true
@@ -37,7 +37,7 @@ swc_common = { version = "5.0.0", path = "../swc_common" }
3737
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
3838
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
3939
swc_ecma_transforms_compat = { version = "7.0.0", path = "../swc_ecma_transforms_compat", optional = true }
40-
swc_ecma_transforms_module = { version = "6.0.0", path = "../swc_ecma_transforms_module", optional = true }
40+
swc_ecma_transforms_module = { version = "7.0.0", path = "../swc_ecma_transforms_module", optional = true }
4141
swc_ecma_transforms_optimization = { version = "6.0.0", path = "../swc_ecma_transforms_optimization", optional = true }
4242
swc_ecma_transforms_proposal = { version = "6.0.0", path = "../swc_ecma_transforms_proposal", optional = true }
4343
swc_ecma_transforms_react = { version = "6.0.0", path = "../swc_ecma_transforms_react", optional = true }

crates/swc_ecma_transforms_module/Cargo.toml

+1-1
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_transforms_module"
99
repository = "https://github.com/swc-project/swc.git"
10-
version = "6.0.0"
10+
version = "7.0.0"
1111

1212
[lib]
1313
bench = false

crates/swc_ecma_transforms_optimization/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ swc_fast_graph = { version = "6.0.0", path = "../swc_fast_graph" }
4343

4444
[dev-dependencies]
4545
swc_ecma_transforms_compat = { version = "7.0.0", path = "../swc_ecma_transforms_compat" }
46-
swc_ecma_transforms_module = { version = "6.0.0", path = "../swc_ecma_transforms_module" }
46+
swc_ecma_transforms_module = { version = "7.0.0", path = "../swc_ecma_transforms_module" }
4747
swc_ecma_transforms_proposal = { version = "6.0.0", path = "../swc_ecma_transforms_proposal" }
4848
swc_ecma_transforms_react = { version = "6.0.0", path = "../swc_ecma_transforms_react" }
4949
swc_ecma_transforms_testing = { version = "6.0.0", path = "../swc_ecma_transforms_testing" }

crates/swc_ecmascript/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "swc_ecmascript"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "7.0.0"
9+
version = "8.0.0"
1010

1111
[package.metadata.docs.rs]
1212
all-features = true
@@ -42,9 +42,9 @@ swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
4242
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen", optional = true }
4343
swc_ecma_minifier = { version = "6.0.1", path = "../swc_ecma_minifier", optional = true }
4444
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser", optional = true, default-features = false }
45-
swc_ecma_preset_env = { version = "7.0.0", path = "../swc_ecma_preset_env", optional = true }
45+
swc_ecma_preset_env = { version = "8.0.0", path = "../swc_ecma_preset_env", optional = true }
4646
swc_ecma_quote = { version = "6.0.0", path = "../swc_ecma_quote", optional = true }
47-
swc_ecma_transforms = { version = "7.0.0", path = "../swc_ecma_transforms", optional = true }
47+
swc_ecma_transforms = { version = "8.0.0", path = "../swc_ecma_transforms", optional = true }
4848
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils", optional = true }
4949
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit", optional = true }
5050

crates/swc_estree_compat/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ codspeed-criterion-compat = { workspace = true }
4141
criterion = { workspace = true }
4242
pretty_assertions = { workspace = true }
4343

44-
swc = { version = "8.0.0", path = "../swc" }
44+
swc = { version = "9.0.0", path = "../swc" }
4545
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
4646
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
47-
swc_ecma_transforms = { version = "7.0.0", path = "../swc_ecma_transforms/" }
47+
swc_ecma_transforms = { version = "8.0.0", path = "../swc_ecma_transforms/" }
4848
testing = { version = "5.0.0", path = "../testing" }
4949
walkdir = { workspace = true }
5050

crates/swc_node_bundler/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
license = "Apache-2.0"
88
name = "swc_node_bundler"
99
repository = "https://github.com/swc-project/swc.git"
10-
version = "8.0.0"
10+
version = "9.0.0"
1111

1212
[lib]
1313
bench = false
@@ -29,7 +29,7 @@ serde_json = { workspace = true }
2929
tracing = { workspace = true }
3030

3131
string_enum = { version = "1.0.0", path = "../string_enum" }
32-
swc = { version = "8.0.0", path = "../swc" }
32+
swc = { version = "9.0.0", path = "../swc" }
3333
swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
3434
swc_bundler = { version = "6.0.0", path = "../swc_bundler", features = [
3535
"concurrent",
@@ -41,7 +41,7 @@ swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
4141
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
4242
swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader" }
4343
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
44-
swc_ecma_transforms = { version = "7.0.0", path = "../swc_ecma_transforms" }
44+
swc_ecma_transforms = { version = "8.0.0", path = "../swc_ecma_transforms" }
4545
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
4646
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
4747
swc_malloc = { version = "1.0.0", path = "../swc_malloc" }

0 commit comments

Comments
 (0)