Skip to content

Commit c90e71f

Browse files
committed
chore: Publish crates with swc_core v46.0.3
1 parent 85e6e8a commit c90e71f

File tree

63 files changed

+79
-87
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+79
-87
lines changed

CHANGELOG-CORE.md

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Changelog
2+
## [unreleased]
3+
4+
### Performance
5+
6+
7+
8+
- **(atoms)** Remove temporary allocations in rkyv serialize and deserialize ([#11202](https://github.com/swc-project/swc/issues/11202)) ([85e6e8a](https://github.com/swc-project/swc/commit/85e6e8a66f0e517512d7cd13c5b287b1ef82e191))
9+
210
## [[email protected]] - 2025-10-29
311

412
### Performance
@@ -2532,18 +2540,6 @@
25322540

25332541
- **(es/proposal)** Fix declarations for `explicit-resource-management` ([#10198](https://github.com/swc-project/swc/issues/10198)) ([99ba555](https://github.com/swc-project/swc/commit/99ba555c810a89ceae899cf612f8ee17925f5581))
25342542

2535-
### Documentation
2536-
2537-
2538-
2539-
- **(es/minifier)** Make `minifier` example utilize comments ([#10195](https://github.com/swc-project/swc/issues/10195)) ([ec3ebe7](https://github.com/swc-project/swc/commit/ec3ebe78fff5bce29ec780e45427ede56576d7c4))
2540-
2541-
### Performance
2542-
2543-
2544-
2545-
- **(es/minifier)** Do not repeat applying pure minifier on last ([#10196](https://github.com/swc-project/swc/issues/10196)) ([e6b7cee](https://github.com/swc-project/swc/commit/e6b7cee6cd0b4c9401981dcc9d40d758be94814b))
2546-
25472543
### Testing
25482544

25492545

CHANGELOG.md

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Changelog
2+
## [unreleased]
3+
4+
### Performance
5+
6+
7+
8+
- **(atoms)** Remove temporary allocations in rkyv serialize and deserialize ([#11202](https://github.com/swc-project/swc/issues/11202)) ([85e6e8a](https://github.com/swc-project/swc/commit/85e6e8a66f0e517512d7cd13c5b287b1ef82e191))
9+
210
## [1.14.0] - 2025-10-29
311

412
### Bug Fixes
@@ -1982,18 +1990,6 @@
19821990

19831991
- **(es/types)** Add missing types for `jsc.transform.react.refresh` ([#10206](https://github.com/swc-project/swc/issues/10206)) ([e71b000](https://github.com/swc-project/swc/commit/e71b000392a01ecb5a35ec8f0faac9cd79ff2cd1))
19841992

1985-
### Documentation
1986-
1987-
1988-
1989-
- **(es/minifier)** Make `minifier` example utilize comments ([#10195](https://github.com/swc-project/swc/issues/10195)) ([ec3ebe7](https://github.com/swc-project/swc/commit/ec3ebe78fff5bce29ec780e45427ede56576d7c4))
1990-
1991-
### Performance
1992-
1993-
1994-
1995-
- **(es/minifier)** Do not repeat applying pure minifier on last ([#10196](https://github.com/swc-project/swc/issues/10196)) ([e6b7cee](https://github.com/swc-project/swc/commit/e6b7cee6cd0b4c9401981dcc9d40d758be94814b))
1996-
19971993
### Testing
19981994

19991995

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/jsdoc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ serde-impl = ["serde"]
1919
nom = { workspace = true }
2020
serde = { workspace = true, features = ["derive"], optional = true }
2121

22-
swc_atoms = { version = "8.0.1", path = "../swc_atoms" }
22+
swc_atoms = { version = "8.0.2", path = "../swc_atoms" }
2323
swc_common = { version = "16.0.0", path = "../swc_common" }
2424

2525
[dev-dependencies]

crates/swc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ tracing = { workspace = true }
7777
url = { workspace = true }
7878

7979

80-
swc_atoms = { version = "8.0.1", path = "../swc_atoms" }
80+
swc_atoms = { version = "8.0.2", path = "../swc_atoms" }
8181
swc_common = { version = "16.0.0", path = "../swc_common", features = [
8282
"sourcemap",
8383
"parking_lot",

crates/swc_atoms/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = { workspace = true }
66
license = { workspace = true }
77
name = "swc_atoms"
88
repository = { workspace = true }
9-
version = "8.0.1"
9+
version = "8.0.2"
1010

1111
[lib]
1212
bench = false

crates/swc_bundler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ relative-path = { workspace = true }
4040
rustc-hash = { workspace = true }
4141
tracing = { workspace = true }
4242

43-
swc_atoms = { version = "8.0.1", path = "../swc_atoms" }
43+
swc_atoms = { version = "8.0.2", path = "../swc_atoms" }
4444
swc_common = { version = "16.0.0", path = "../swc_common" }
4545
swc_ecma_ast = { version = "17.0.0", path = "../swc_ecma_ast" }
4646
swc_ecma_codegen = { version = "19.0.0", path = "../swc_ecma_codegen" }

crates/swc_cli_impl/Cargo.toml

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

41-
swc_core = { version = "46.0.2", features = [
41+
swc_core = { version = "46.0.3", features = [
4242
"trace_macro",
4343
"common_concurrent",
4444
"base_concurrent",

crates/swc_common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ url = { workspace = true }
7171
ast_node = { version = "4.0.0", path = "../ast_node" }
7272
better_scoped_tls = { version = "1.0.1", path = "../better_scoped_tls" }
7373
from_variant = { version = "2.0.2", path = "../from_variant" }
74-
swc_atoms = { version = "8.0.1", path = "../swc_atoms" }
74+
swc_atoms = { version = "8.0.2", path = "../swc_atoms" }
7575
swc_eq_ignore_macros = { version = "1.0.1", path = "../swc_eq_ignore_macros" }
7676
swc_visit = { version = "2.0.1", path = "../swc_visit" }
7777

crates/swc_compiler_base/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ serde = { workspace = true, features = ["derive"] }
2323
serde_json = { workspace = true }
2424
swc_sourcemap = { workspace = true }
2525

26-
swc_atoms = { version = "8.0.1", path = "../swc_atoms" }
26+
swc_atoms = { version = "8.0.2", path = "../swc_atoms" }
2727
swc_common = { version = "16.0.0", path = "../swc_common", features = [
2828
"sourcemap",
2929
] }

0 commit comments

Comments
 (0)