Skip to content

Commit 793c423

Browse files
committed
chore: Publish crates
1 parent 2bd5b44 commit 793c423

File tree

8 files changed

+22
-22
lines changed

8 files changed

+22
-22
lines changed

Cargo.lock

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

crates/swc/Cargo.toml

Lines changed: 3 additions & 3 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 = "0.204.0"
12+
version = "0.205.0"
1313

1414
[lib]
1515
bench = false
@@ -76,8 +76,8 @@ swc_ecma_visit = {version = "0.70.0", path = "../swc_ecma_visit"}
7676
swc_ecmascript = {version = "0.179.0", path = "../swc_ecmascript"}
7777
swc_error_reporters = {version = "0.7.0", path = "../swc_error_reporters"}
7878
swc_node_comments = {version = "0.10.0", path = "../swc_node_comments"}
79-
swc_plugin_proxy = {version = "0.10.0", path = "../swc_plugin_proxy", optional = true}
80-
swc_plugin_runner = {version = "0.63.0", path = "../swc_plugin_runner", optional = true, default-features = false}
79+
swc_plugin_proxy = {version = "0.11.0", path = "../swc_plugin_proxy", optional = true}
80+
swc_plugin_runner = {version = "0.64.0", path = "../swc_plugin_runner", optional = true, default-features = false}
8181
swc_timer = {version = "0.11.0", path = "../swc_timer"}
8282
swc_visit = {version = "0.4.0", path = "../swc_visit"}
8383
tracing = "0.1.32"

crates/swc_cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
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"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.78.0"
9+
version = "0.79.0"
1010

1111
[[bin]]
1212
bench = false
@@ -31,9 +31,9 @@ rayon = "1"
3131
relative-path = "1.6.1"
3232
serde = { version = "1", features = ["derive"] }
3333
serde_json = { version = "1", features = ["unbounded_depth"] }
34-
swc = { version = "0.204.0", path = "../swc" }
34+
swc = { version = "0.205.0", path = "../swc" }
3535
swc_common = { version = "0.23.0", path = "../swc_common" }
36-
swc_plugin_runner = { version = "0.63.0", path = "../swc_plugin_runner", default-features = false, optional = true }
36+
swc_plugin_runner = { version = "0.64.0", path = "../swc_plugin_runner", default-features = false, optional = true }
3737
swc_trace_macro = { version = "0.1.0", path = "../swc_trace_macro" }
3838
tracing = "0.1.32"
3939
tracing-chrome = "0.5.0"

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.125.0"
10+
version = "0.126.0"
1111

1212
[package.metadata.docs.rs]
1313
all-features = true
@@ -38,7 +38,7 @@ swc_node_comments = {version = "0.10.0", path = "../swc_node_comments/"}
3838
[dev-dependencies]
3939
criterion = "0.3"
4040
pretty_assertions = "1.1"
41-
swc = {version = "0.204.0", path = "../swc"}
41+
swc = {version = "0.205.0", path = "../swc"}
4242
swc_ecma_ast = {version = "0.84.0", path = "../swc_ecma_ast"}
4343
swc_ecma_parser = {version = "0.111.0", path = "../swc_ecma_parser"}
4444
swc_ecma_transforms = {version = "0.174.0", path = "../swc_ecma_transforms/"}

crates/swc_plugin/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2018"
66
license = "Apache-2.0"
77
name = "swc_plugin"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.76.0"
9+
version = "0.77.0"
1010

1111
[package.metadata.docs.rs]
1212
all-features = true
@@ -25,7 +25,7 @@ swc_common = { version = "0.23.0", path = "../swc_common", features = [
2525
] }
2626
swc_ecma_quote = { version = "0.25.0", path = "../swc_ecma_quote", optional = true }
2727
swc_ecmascript = { version = "0.179.0", path = "../swc_ecmascript", features = ["utils", "visit", "rkyv-impl"] }
28-
swc_plugin_proxy = { version = "0.10.0", path = "../swc_plugin_proxy", features = [
28+
swc_plugin_proxy = { version = "0.11.0", path = "../swc_plugin_proxy", features = [
2929
"plugin-mode",
3030
] }
31-
swc_plugin_macro = { version = "0.4.1", path = "../swc_plugin_macro" }
31+
swc_plugin_macro = { version = "0.5.0", path = "../swc_plugin_macro" }

crates/swc_plugin_macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2018"
66
license = "Apache-2.0"
77
name = "swc_plugin_macro"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.4.1"
9+
version = "0.5.0"
1010

1111
[lib]
1212
bench = false

crates/swc_plugin_proxy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
license = "Apache-2.0"
66
name = "swc_plugin_proxy"
77
repository = "https://github.com/swc-project/swc.git"
8-
version = "0.10.0"
8+
version = "0.11.0"
99

1010
[lib]
1111
bench = false

crates/swc_plugin_runner/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_plugin_runner"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.63.0"
9+
version = "0.64.0"
1010

1111
[lib]
1212
bench = false
@@ -33,7 +33,7 @@ swc_common = { version = "0.23.0", path = "../swc_common", features = [
3333
swc_ecma_ast = { version = "0.84.0", path = "../swc_ecma_ast", features = [
3434
"rkyv-impl",
3535
] }
36-
swc_plugin_proxy = { version = "0.10.0", path = "../swc_plugin_proxy", features = [
36+
swc_plugin_proxy = { version = "0.11.0", path = "../swc_plugin_proxy", features = [
3737
"plugin-rt",
3838
] }
3939
tracing = "0.1.32"

0 commit comments

Comments
 (0)