Skip to content

Commit c06690e

Browse files
committed
chore: Publish crates
1 parent c665918 commit c06690e

File tree

7 files changed

+19
-16
lines changed

7 files changed

+19
-16
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55

66

77

8+
- **(es)** Fix a crash related to an empty source map (#7229) ([c665918](https://github.com/swc-project/swc/commit/c6659183a616725b61733e584bbb6e540b9cbbde))
9+
10+
811
- **(es/parser)** Use a hard error for missing r-paren in an if stmt (#7223) ([b1c40a4](https://github.com/swc-project/swc/commit/b1c40a411f01792f9b9f4bc9d5f08782fc6d6a1c))
912

1013
### Testing

Cargo.lock

Lines changed: 5 additions & 5 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
@@ -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 = "0.49.2"
8+
version = "0.49.3"
99

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

3434
[dependencies]
3535
# Common deps for the SWC imports
36-
swc = { optional = true, version = "0.260.2", path = "../swc" }
36+
swc = { optional = true, version = "0.260.3", path = "../swc" }
3737
swc_common = { optional = true, version = "0.31.0", path = "../swc_common" }
3838
swc_ecma_ast = { optional = true, version = "0.103.0", path = "../swc_ecma_ast" }
3939
swc_ecma_transforms = { optional = true, version = "0.217.1", path = "../swc_ecma_transforms" }

crates/swc/Cargo.toml

Lines changed: 1 addition & 1 deletion
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 = "0.260.2"
12+
version = "0.260.3"
1313

1414
[lib]
1515
bench = false

crates/swc_core/Cargo.toml

Lines changed: 4 additions & 4 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 = "0.75.2"
9+
version = "0.75.3"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"common_perf",
@@ -340,8 +340,8 @@ __visit = ["__ecma", "swc_ecma_visit"]
340340
once_cell = { optional = true, version = "1.13.0" }
341341

342342
# swc_* dependencies
343-
binding_macros = { optional = true, version = "0.49.2", path = "../binding_macros" }
344-
swc = { optional = true, version = "0.260.2", path = "../swc" }
343+
binding_macros = { optional = true, version = "0.49.3", path = "../binding_macros" }
344+
swc = { optional = true, version = "0.260.3", path = "../swc" }
345345
swc_atoms = { optional = true, version = "0.5.0", path = "../swc_atoms" }
346346
swc_bundler = { optional = true, version = "0.213.1", path = "../swc_bundler" }
347347
swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" }
@@ -374,7 +374,7 @@ swc_ecma_usage_analyzer = { optional = true, version = "0.12.1", path =
374374
swc_ecma_utils = { optional = true, version = "0.116.1", path = "../swc_ecma_utils" }
375375
swc_ecma_visit = { optional = true, version = "0.89.0", path = "../swc_ecma_visit" }
376376
swc_node_base = { optional = true, version = "0.5.8", path = "../swc_node_base" }
377-
swc_node_bundler = { optional = true, version = "0.47.2", path = "../swc_node_bundler" }
377+
swc_node_bundler = { optional = true, version = "0.47.3", path = "../swc_node_bundler" }
378378
swc_nodejs_common = { optional = true, version = "0.0.5", path = "../swc_nodejs_common" }
379379
swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" }
380380
swc_plugin_macro = { optional = true, version = "0.9.11", path = "../swc_plugin_macro" }

crates/swc_estree_compat/Cargo.toml

Lines changed: 2 additions & 2 deletions
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_estree_compat"
99
repository = "https://github.com/swc-project/swc.git"
10-
version = "0.183.2"
10+
version = "0.183.3"
1111

1212
[package.metadata.docs.rs]
1313
all-features = true
@@ -40,7 +40,7 @@ swc_node_comments = { version = "0.18.0", path = "../swc_node_comments/" }
4040
criterion = "0.3"
4141
pretty_assertions = "1.1"
4242

43-
swc = { version = "0.260.2", path = "../swc" }
43+
swc = { version = "0.260.3", path = "../swc" }
4444
swc_ecma_ast = { version = "0.103.0", path = "../swc_ecma_ast" }
4545
swc_ecma_parser = { version = "0.133.1", path = "../swc_ecma_parser" }
4646
swc_ecma_transforms = { version = "0.217.1", path = "../swc_ecma_transforms/" }

crates/swc_node_bundler/Cargo.toml

Lines changed: 2 additions & 2 deletions
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 = "0.47.2"
10+
version = "0.47.3"
1111

1212
[lib]
1313
bench = false
@@ -29,7 +29,7 @@ serde_json = "1"
2929
tracing = "0.1.32"
3030

3131
string_enum = { version = "0.4.0", path = "../string_enum" }
32-
swc = { version = "0.260.2", path = "../swc" }
32+
swc = { version = "0.260.3", path = "../swc" }
3333
swc_atoms = { version = "0.5.0", path = "../swc_atoms" }
3434
swc_bundler = { version = "0.213.1", path = "../swc_bundler", features = [
3535
"concurrent",

0 commit comments

Comments
 (0)