Skip to content

Commit 2a66235

Browse files
committed
chore: Publish crates
1 parent 01db30f commit 2a66235

File tree

35 files changed

+224
-221
lines changed

35 files changed

+224
-221
lines changed

CHANGELOG.md

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

1111
- **(es/parser)** Use a hard error for missing r-paren in an if stmt (#7223) ([b1c40a4](https://github.com/swc-project/swc/commit/b1c40a411f01792f9b9f4bc9d5f08782fc6d6a1c))
1212

13+
14+
- **(es/parser)** Reset ctx for cond while parsing a stmt (#7232) ([01db30f](https://github.com/swc-project/swc/commit/01db30f91ec91d5dffe4c2ac1934965cc9c73cf8))
15+
1316
### Testing
1417

1518

Cargo.lock

Lines changed: 33 additions & 33 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: 3 additions & 3 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.3"
8+
version = "0.49.4"
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 = "0.260.3", path = "../swc" }
36+
swc = { optional = true, version = "0.260.4", 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" }
39-
swc_ecma_transforms = { optional = true, version = "0.217.1", path = "../swc_ecma_transforms" }
39+
swc_ecma_transforms = { optional = true, version = "0.217.2", path = "../swc_ecma_transforms" }
4040
swc_ecma_visit = { optional = true, version = "0.89.0", path = "../swc_ecma_visit" }
4141

4242
# Optional deps for the wasm binding macro

crates/dbg-swc/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
license = "Apache-2.0"
66
name = "dbg-swc"
77
repository = "https://github.com/kdy1/dbg-swc.git"
8-
version = "0.80.4"
8+
version = "0.80.5"
99

1010
[[bin]]
1111
bench = false
@@ -31,12 +31,12 @@ swc_common = { version = "0.31.0", features = [
3131
"tty-emitter",
3232
], path = "../swc_common" }
3333
swc_ecma_ast = { version = "0.103.0", path = "../swc_ecma_ast" }
34-
swc_ecma_codegen = { version = "0.138.1", path = "../swc_ecma_codegen" }
35-
swc_ecma_minifier = { version = "0.180.1", path = "../swc_ecma_minifier", features = [
34+
swc_ecma_codegen = { version = "0.138.2", path = "../swc_ecma_codegen" }
35+
swc_ecma_minifier = { version = "0.180.2", path = "../swc_ecma_minifier", features = [
3636
"concurrent",
3737
] }
38-
swc_ecma_parser = { version = "0.133.1", path = "../swc_ecma_parser" }
39-
swc_ecma_transforms_base = { version = "0.126.1", path = "../swc_ecma_transforms_base" }
38+
swc_ecma_parser = { version = "0.133.2", path = "../swc_ecma_parser" }
39+
swc_ecma_transforms_base = { version = "0.126.2", path = "../swc_ecma_transforms_base" }
4040
swc_ecma_visit = { version = "0.89.0", path = "../swc_ecma_visit" }
4141
swc_error_reporters = { version = "0.15.0", path = "../swc_error_reporters" }
4242
swc_timer = { version = "0.19.0", path = "../swc_timer" }

crates/jsdoc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
include = ["Cargo.toml", "src/**/*.rs"]
77
license = "Apache-2.0"
88
name = "jsdoc"
9-
version = "0.102.1"
9+
version = "0.102.2"
1010

1111
[lib]
1212
bench = false
@@ -26,5 +26,5 @@ anyhow = "1"
2626
dashmap = "5.1.0"
2727

2828
swc_ecma_ast = { version = "0.103.0", path = "../swc_ecma_ast" }
29-
swc_ecma_parser = { version = "0.133.1", path = "../swc_ecma_parser" }
29+
swc_ecma_parser = { version = "0.133.2", path = "../swc_ecma_parser" }
3030
testing = { version = "0.33.0", path = "../testing" }

0 commit comments

Comments
 (0)