Skip to content

Commit 6fbfd51

Browse files
committed
chore: Publish crates with swc_core v22.2.0
1 parent eee73ce commit 6fbfd51

File tree

7 files changed

+22
-8
lines changed

7 files changed

+22
-8
lines changed

CHANGELOG-CORE.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Changelog
2+
## [unreleased]
3+
4+
### Testing
5+
6+
7+
8+
- **(es)** Unignore tests and update node to `20` in exec tests ([#10348](https://github.com/swc-project/swc/issues/10348)) ([eee73ce](https://github.com/swc-project/swc/commit/eee73cec761d1c28f6d1b87be9082fdf2af6e226))
9+
210
## [[email protected]] - 2025-04-10
311

412
### Bug Fixes

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,12 @@
5757

5858
- **(es/parser)** Remove redundant `is_ascii` calls ([#10334](https://github.com/swc-project/swc/issues/10334)) ([e66b4d6](https://github.com/swc-project/swc/commit/e66b4d660c36a491f06e8d79f6d49a815dadebdc))
5959

60+
### Testing
61+
62+
63+
64+
- **(es)** Unignore tests and update node to `20` in exec tests ([#10348](https://github.com/swc-project/swc/issues/10348)) ([eee73ce](https://github.com/swc-project/swc/commit/eee73cec761d1c28f6d1b87be9082fdf2af6e226))
65+
6066
## [1.11.18] - 2025-04-07
6167

6268
### Bug Fixes

Cargo.lock

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

crates/swc/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ swc_config = { version = "2.0.0", path = "../swc_config" }
8383
swc_ecma_ast = { version = "8.1.1", path = "../swc_ecma_ast" }
8484
swc_ecma_codegen = { version = "10.0.0", path = "../swc_ecma_codegen" }
8585
swc_ecma_ext_transforms = { version = "12.0.0", path = "../swc_ecma_ext_transforms" }
86-
swc_ecma_lints = { version = "12.0.0", path = "../swc_ecma_lints" }
86+
swc_ecma_lints = { version = "12.1.0", path = "../swc_ecma_lints" }
8787
swc_ecma_loader = { version = "8.0.0", path = "../swc_ecma_loader", features = [
8888
"cache",
8989
"node",
@@ -144,7 +144,7 @@ par-core = { workspace = true, features = ["chili"] }
144144
swc_ecma_ast = { version = "8.1.1", path = "../swc_ecma_ast", features = [
145145
"serde-impl",
146146
] }
147-
swc_ecma_lints = { version = "12.0.0", path = "../swc_ecma_lints", features = [
147+
swc_ecma_lints = { version = "12.1.0", path = "../swc_ecma_lints", features = [
148148
"non_critical_lints",
149149
] }
150150
swc_ecma_testing = { version = "9.0.0", path = "../swc_ecma_testing" }

crates/swc_cli_impl/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ tracing-futures = { workspace = true }
4040
tracing-subscriber = { workspace = true, features = ["env-filter"] }
4141
walkdir = { workspace = true }
4242

43-
swc_core = { version = "22.1.0", features = [
43+
swc_core = { version = "22.2.0", features = [
4444
"trace_macro",
4545
"common_concurrent",
4646
"base_concurrent",

crates/swc_core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = { workspace = true }
66
license = { workspace = true }
77
name = "swc_core"
88
repository = { workspace = true }
9-
version = "22.1.0"
9+
version = "22.2.0"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"allocator_node",
@@ -367,7 +367,7 @@ swc_css_utils = { optional = true, version = "8.0.0", path =
367367
swc_css_visit = { optional = true, version = "8.0.0", path = "../swc_css_visit" }
368368
swc_ecma_ast = { optional = true, version = "8.1.1", path = "../swc_ecma_ast" }
369369
swc_ecma_codegen = { optional = true, version = "10.0.0", path = "../swc_ecma_codegen" }
370-
swc_ecma_lints = { optional = true, version = "12.0.0", path = "../swc_ecma_lints" }
370+
swc_ecma_lints = { optional = true, version = "12.1.0", path = "../swc_ecma_lints" }
371371
swc_ecma_loader = { optional = true, version = "8.0.0", path = "../swc_ecma_loader" }
372372
swc_ecma_minifier = { optional = true, version = "16.0.1", path = "../swc_ecma_minifier" }
373373
swc_ecma_parser = { optional = true, version = "11.0.1", path = "../swc_ecma_parser" }

crates/swc_ecma_lints/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
66
license = { workspace = true }
77
name = "swc_ecma_lints"
88
repository = { workspace = true }
9-
version = "12.0.0"
9+
version = "12.1.0"
1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1111

1212
[lib]

0 commit comments

Comments
 (0)