Skip to content

Commit ca89e78

Browse files
committed
chore: Publish crates with swc_core v32.0.4
1 parent f8ff9be commit ca89e78

File tree

12 files changed

+13
-15
lines changed

12 files changed

+13
-15
lines changed

CHANGELOG-CORE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changelog
2-
## [unreleased]
2+
## [swc_core@v32.0.3] - 2025-07-16
33

44
### Features
55

CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2198,6 +2198,4 @@
21982198

21992199
- **(swc_parallel)** Fix build on CI ([#9844](https://github.com/swc-project/swc/issues/9844)) ([a2b7105](https://github.com/swc-project/swc/commit/a2b7105286cbdf2c697917a54fa363e9acb58856))
22002200

2201-
## [1.10.4] - 2024-12-30
2202-
22032201
<!-- generated by git-cliff -->

Cargo.lock

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

crates/dbg-swc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ swc_common = { version = "14.0.0", features = [
3131
], path = "../swc_common" }
3232
swc_ecma_ast = { version = "14.0.0", path = "../swc_ecma_ast" }
3333
swc_ecma_codegen = { version = "16.0.0", path = "../swc_ecma_codegen" }
34-
swc_ecma_minifier = { version = "26.0.1", path = "../swc_ecma_minifier", features = [
34+
swc_ecma_minifier = { version = "26.0.2", path = "../swc_ecma_minifier", features = [
3535
"concurrent",
3636
] }
3737
swc_ecma_parser = { version = "20.0.0", path = "../swc_ecma_parser" }

crates/swc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ swc_ecma_loader = { version = "14.0.0", path = "../swc_ecma_loader", features =
9090
"node",
9191
"tsc",
9292
] }
93-
swc_ecma_minifier = { version = "26.0.1", path = "../swc_ecma_minifier" }
93+
swc_ecma_minifier = { version = "26.0.2", path = "../swc_ecma_minifier" }
9494
swc_ecma_parser = { version = "20.0.0", path = "../swc_ecma_parser" }
9595
swc_ecma_preset_env = { version = "26.0.0", path = "../swc_ecma_preset_env" }
9696
swc_ecma_transforms = { version = "25.0.0", path = "../swc_ecma_transforms", features = [

crates/swc_bundler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ swc_ecma_loader = { version = "14.0.0", path = "../swc_ecma_loader", features =
6262
"node",
6363
"cache",
6464
] }
65-
swc_ecma_minifier = { version = "26.0.1", path = "../swc_ecma_minifier", features = [
65+
swc_ecma_minifier = { version = "26.0.2", path = "../swc_ecma_minifier", features = [
6666
"concurrent",
6767
] }
6868
swc_ecma_transforms_base = { version = "21.0.0", path = "../swc_ecma_transforms_base", features = [

crates/swc_cli_impl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ tracing-chrome = { workspace = true }
3737
tracing-subscriber = { workspace = true, features = ["env-filter"] }
3838
walkdir = { workspace = true }
3939

40-
swc_core = { version = "32.0.3", features = [
40+
swc_core = { version = "32.0.4", features = [
4141
"trace_macro",
4242
"common_concurrent",
4343
"base_concurrent",

crates/swc_compiler_base/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ swc_common = { version = "14.0.0", path = "../swc_common", features = [
3030
swc_config = { version = "3.1.1", path = "../swc_config" }
3131
swc_ecma_ast = { version = "14.0.0", path = "../swc_ecma_ast" }
3232
swc_ecma_codegen = { version = "16.0.0", path = "../swc_ecma_codegen" }
33-
swc_ecma_minifier = { version = "26.0.1", path = "../swc_ecma_minifier" }
33+
swc_ecma_minifier = { version = "26.0.2", path = "../swc_ecma_minifier" }
3434
swc_ecma_parser = { version = "20.0.0", path = "../swc_ecma_parser" }
3535
swc_ecma_visit = { version = "14.0.0", path = "../swc_ecma_visit" }
3636
swc_timer = { version = "1.0.0", path = "../swc_timer" }

crates/swc_core/Cargo.toml

Lines changed: 2 additions & 2 deletions
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 = "32.0.3"
9+
version = "32.0.4"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"allocator_node",
@@ -368,7 +368,7 @@ swc_ecma_ast = { optional = true, version = "14.0.0", path =
368368
swc_ecma_codegen = { optional = true, version = "16.0.0", path = "../swc_ecma_codegen" }
369369
swc_ecma_lints = { optional = true, version = "20.0.0", path = "../swc_ecma_lints" }
370370
swc_ecma_loader = { optional = true, version = "14.0.0", path = "../swc_ecma_loader" }
371-
swc_ecma_minifier = { optional = true, version = "26.0.1", path = "../swc_ecma_minifier" }
371+
swc_ecma_minifier = { optional = true, version = "26.0.2", path = "../swc_ecma_minifier" }
372372
swc_ecma_parser = { optional = true, version = "20.0.0", path = "../swc_ecma_parser" }
373373
swc_ecma_preset_env = { optional = true, version = "26.0.0", path = "../swc_ecma_preset_env" }
374374
swc_ecma_quote_macros = { optional = true, version = "20.0.0", path = "../swc_ecma_quote_macros" }

crates/swc_ecma_minifier/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"]
77
license = { workspace = true }
88
name = "swc_ecma_minifier"
99
repository = { workspace = true }
10-
version = "26.0.1"
10+
version = "26.0.2"
1111

1212
[package.metadata.docs.rs]
1313
all-features = true

0 commit comments

Comments
 (0)