Skip to content

Commit f1470cf

Browse files
committed
chore: Publish crates with swc_core v3.0.1
1 parent 3597b0f commit f1470cf

File tree

79 files changed

+107
-105
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+107
-105
lines changed

.changeset/quick-actors-do.md

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

.changeset/silent-cows-brake.md

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

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changelog
22
## [unreleased]
33

4+
### Bug Fixes
5+
6+
7+
8+
- **(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))
9+
410
### Features
511

612

@@ -10,10 +16,19 @@
1016

1117
- **(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))
1218

19+
### Miscellaneous Tasks
20+
21+
22+
23+
- **(deps)** Update cargo (patch) ([#9607](https://github.com/swc-project/swc/issues/9607)) ([3597b0f](https://github.com/swc-project/swc/commit/3597b0f53d060b09b7e878e9c825321f053d189e))
24+
1325
### Performance
1426

1527

1628

29+
- **(es)** Cache `current_dir()` system calls ([#9683](https://github.com/swc-project/swc/issues/9683)) ([7aab945](https://github.com/swc-project/swc/commit/7aab945a2199be06e20a35ec0d197fc817a48d9d))
30+
31+
1732
- **(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))
1833

1934
## [1.7.40] - 2024-10-26

Cargo.lock

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

crates/binding_macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ binding_wasm = [
3333

3434
[dependencies]
3535
# Common deps for the SWC imports
36-
swc = { optional = true, version = "3.0.0", path = "../swc" }
37-
swc_common = { optional = true, version = "2.0.0", path = "../swc_common" }
36+
swc = { optional = true, version = "3.0.1", path = "../swc" }
37+
swc_common = { optional = true, version = "2.0.1", path = "../swc_common" }
3838
swc_ecma_ast = { optional = true, version = "2.0.0", path = "../swc_ecma_ast" }
3939
swc_ecma_transforms = { optional = true, version = "3.0.0", path = "../swc_ecma_transforms" }
4040
swc_ecma_visit = { optional = true, version = "2.0.0", path = "../swc_ecma_visit" }

crates/dbg-swc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ clap = { version = "3", features = ["derive"] }
2727
tracing-subscriber = { workspace = true, features = ["fmt", "env-filter"] }
2828

2929
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
30-
swc_common = { version = "2.0.0", features = [
30+
swc_common = { version = "2.0.1", features = [
3131
"concurrent",
3232
"tty-emitter",
3333
], path = "../swc_common" }

crates/jsdoc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ nom = { workspace = true }
2020
serde = { workspace = true, features = ["derive"], optional = true }
2121

2222
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
23-
swc_common = { version = "2.0.0", path = "../swc_common" }
23+
swc_common = { version = "2.0.1", path = "../swc_common" }
2424

2525
[dev-dependencies]
2626
anyhow = { workspace = true }

crates/swc/Cargo.toml

Lines changed: 2 additions & 2 deletions
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 = "3.0.0"
12+
version = "3.0.1"
1313

1414
[lib]
1515
bench = false
@@ -69,7 +69,7 @@ url = { workspace = true }
6969

7070
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
7171
swc_cached = { version = "1.0.0", path = "../swc_cached" }
72-
swc_common = { version = "2.0.0", path = "../swc_common", features = [
72+
swc_common = { version = "2.0.1", path = "../swc_common", features = [
7373
"ahash",
7474
"sourcemap",
7575
"parking_lot",

crates/swc_bundler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ relative-path = { workspace = true }
3838
tracing = { workspace = true }
3939

4040
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
41-
swc_common = { version = "2.0.0", path = "../swc_common" }
41+
swc_common = { version = "2.0.1", path = "../swc_common" }
4242
swc_ecma_ast = { version = "2.0.0", path = "../swc_ecma_ast" }
4343
swc_ecma_codegen = { version = "2.0.0", path = "../swc_ecma_codegen" }
4444
swc_ecma_loader = { version = "2.0.0", path = "../swc_ecma_loader" }

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 = "3.0.0", features = [
42+
swc_core = { version = "3.0.1", features = [
4343
"trace_macro",
4444
"common_concurrent",
4545
"base_concurrent",

0 commit comments

Comments
 (0)