Skip to content

Commit

Permalink
chore: Publish crates with swc_core v16.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Feb 27, 2025
1 parent fb75b98 commit 3e8bb78
Show file tree
Hide file tree
Showing 22 changed files with 32 additions and 33 deletions.
6 changes: 0 additions & 6 deletions .changeset/rich-beers-pay.md

This file was deleted.

11 changes: 8 additions & 3 deletions CHANGELOG-CORE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# Changelog
## [unreleased]

### Bug Fixes



- Use `jemalloc` on platforms that `mimalloc` fails to build ([#10116](https://github.com/swc-project/swc/issues/10116)) ([fb75b98](https://github.com/swc-project/swc/commit/fb75b9827902d2ac5481357c965e2bc20075fd2e))

## [swc_core@v16.1.0] - 2025-02-27

### Bug Fixes
Expand Down Expand Up @@ -1410,9 +1418,6 @@
- **(es/decorators)** Fix metadata for accessors ([#9444](https://github.com/swc-project/swc/issues/9444)) ([99738ef](https://github.com/swc-project/swc/commit/99738ef41233211d6e26de520c3817d395492d37))


- **(es/fixer)** Wrap `in` expr in for-in head ([#9209](https://github.com/swc-project/swc/issues/9209)) ([5cd837f](https://github.com/swc-project/swc/commit/5cd837f39a68d28bbc02a21b715d6153fda78a8a))


- **(es/isolated-dts)** Preserve comments ([#9572](https://github.com/swc-project/swc/issues/9572)) ([6d15d9c](https://github.com/swc-project/swc/commit/6d15d9c2eb4397b15908cda38f2e44e02d81ebc1))


Expand Down
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@

- **(es/resolver)** Analyze variable declarations with `declare` ([#10102](https://github.com/swc-project/swc/issues/10102)) ([cff6a64](https://github.com/swc-project/swc/commit/cff6a64a18af26c73afd3b42cffea3c7300b369b))


- Use `jemalloc` on platforms that `mimalloc` fails to build ([#10116](https://github.com/swc-project/swc/issues/10116)) ([fb75b98](https://github.com/swc-project/swc/commit/fb75b9827902d2ac5481357c965e2bc20075fd2e))

### Miscellaneous Tasks


Expand Down Expand Up @@ -1680,9 +1683,6 @@
- **(es/codegen)** Fix codegen of large numeric literals ([#9226](https://github.com/swc-project/swc/issues/9226)) ([fba79e6](https://github.com/swc-project/swc/commit/fba79e6f03da69a6ae721eabe4afeaaedc301816))


- **(es/fixer)** Wrap `in` expr in for-in head ([#9209](https://github.com/swc-project/swc/issues/9209)) ([5cd837f](https://github.com/swc-project/swc/commit/5cd837f39a68d28bbc02a21b715d6153fda78a8a))


- **(es/minifier)** Remove optimization for array pattern ([#9241](https://github.com/swc-project/swc/issues/9241)) ([521161e](https://github.com/swc-project/swc/commit/521161e17009e2025ed9b042579f8cd055e26816))


Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/hstr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ smartstring = { workspace = true }
smol_str = { workspace = true }
string_cache = { workspace = true }

swc_malloc = { version = "1.1.0", path = "../swc_malloc" }
swc_malloc = { version = "1.2.0", path = "../swc_malloc" }

[[bench]]
harness = false
Expand Down
2 changes: 1 addition & 1 deletion crates/swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ swc_ecma_lints = { version = "11.0.0", path = "../swc_ecma_lints", features = [
"non_critical_lints",
] }
swc_ecma_testing = { version = "8.0.0", path = "../swc_ecma_testing" }
swc_malloc = { version = "1.1.0", path = "../swc_malloc" }
swc_malloc = { version = "1.2.0", path = "../swc_malloc" }
testing = { version = "8.0.0", path = "../testing" }

[[example]]
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_allocator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ triomphe = { workspace = true }
codspeed-criterion-compat = { workspace = true }
criterion = { workspace = true }

swc_malloc = { version = "1.1.0", path = "../swc_malloc" }
swc_malloc = { version = "1.2.0", path = "../swc_malloc" }


[[bench]]
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,5 @@ swc_ecma_minifier = { version = "12.0.1", path = "../swc_ecma_minifier", feature
swc_ecma_transforms_proposal = { version = "11.0.1", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "12.0.0", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "12.0.0", path = "../swc_ecma_transforms_typescript" }
swc_malloc = { version = "1.1.0", path = "../swc_malloc" }
swc_malloc = { version = "1.2.0", path = "../swc_malloc" }
testing = { version = "8.0.0", path = "../testing" }
2 changes: 1 addition & 1 deletion crates/swc_cli_impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ tracing-futures = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
walkdir = { workspace = true }

swc_core = { version = "16.1.0", features = [
swc_core = { version = "16.2.0", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = { workspace = true }
license = { workspace = true }
name = "swc_core"
repository = { workspace = true }
version = "16.1.0"
version = "16.2.0"
[package.metadata.docs.rs]
features = [
"allocator_node",
Expand Down Expand Up @@ -371,7 +371,7 @@ swc_ecma_transforms_typescript = { optional = true, version = "12.0.0", path =
swc_ecma_usage_analyzer = { optional = true, version = "12.0.0", path = "../swc_ecma_usage_analyzer" }
swc_ecma_utils = { optional = true, version = "11.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "8.0.0", path = "../swc_ecma_visit" }
swc_malloc = { optional = true, version = "1.1.0", path = "../swc_malloc" }
swc_malloc = { optional = true, version = "1.2.0", path = "../swc_malloc" }
swc_node_bundler = { optional = true, version = "16.0.0", path = "../swc_node_bundler" }
swc_nodejs_common = { optional = true, version = "1.0.0", path = "../swc_nodejs_common" }
swc_plugin = { optional = true, version = "1.0.0", path = "../swc_plugin" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_css_minifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ criterion = { workspace = true }

swc_css_codegen = { version = "8.0.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "8.0.0", path = "../swc_css_parser" }
swc_malloc = { version = "1.1.0", path = "../swc_malloc" }
swc_malloc = { version = "1.2.0", path = "../swc_malloc" }
testing = { version = "8.0.0", path = "../testing" }
2 changes: 1 addition & 1 deletion crates/swc_css_parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ swc_css_ast = { version = "8.0.0", path = "../swc_css_ast", features = [
"serde-impl",
] }
swc_css_visit = { version = "8.0.0", path = "../swc_css_visit" }
swc_malloc = { version = "1.1.0", path = "../swc_malloc" }
swc_malloc = { version = "1.2.0", path = "../swc_malloc" }
testing = { version = "8.0.0", path = "../testing" }

[[bench]]
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ swc_common = { version = "8.0.0", path = "../swc_common", features = [
] }
swc_ecma_parser = { version = "10.0.0", path = "../swc_ecma_parser" }
swc_ecma_testing = { version = "8.0.0", path = "../swc_ecma_testing" }
swc_malloc = { version = "1.1.0", path = "../swc_malloc" }
swc_malloc = { version = "1.2.0", path = "../swc_malloc" }
testing = { version = "8.0.0", path = "../testing" }

[[bench]]
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_lints/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ swc_ecma_codegen = { version = "8.0.1", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "10.0.0", path = "../swc_ecma_parser" }
swc_ecma_testing = { version = "8.0.0", path = "../swc_ecma_testing" }
swc_ecma_transforms_base = { version = "11.1.1", path = "../swc_ecma_transforms_base" }
swc_malloc = { version = "1.1.0", path = "../swc_malloc" }
swc_malloc = { version = "1.2.0", path = "../swc_malloc" }
testing = { version = "8.0.0", path = "../testing" }
walkdir = { workspace = true }

Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_minifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ walkdir = { workspace = true }
codspeed-criterion-compat = { workspace = true }
swc_allocator = { version = "4.0.0", path = "../swc_allocator" }
swc_ecma_testing = { version = "8.0.0", path = "../swc_ecma_testing" }
swc_malloc = { version = "1.1.0", path = "../swc_malloc" }
swc_malloc = { version = "1.2.0", path = "../swc_malloc" }
testing = { version = "8.0.0", path = "../testing" }

[[bench]]
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ swc_ecma_ast = { version = "8.0.0", path = "../swc_ecma_ast", features = [
"serde-impl",
] }
swc_ecma_visit = { version = "8.0.0", path = "../swc_ecma_visit" }
swc_malloc = { version = "1.1.0", path = "../swc_malloc" }
swc_malloc = { version = "1.2.0", path = "../swc_malloc" }
testing = { version = "8.0.0", path = "../testing" }

[[example]]
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ rayon = { workspace = true }

swc_ecma_codegen = { version = "8.0.1", path = "../swc_ecma_codegen" }
swc_ecma_transforms_macros = { version = "1.0.0", path = "../swc_ecma_transforms_macros" }
swc_malloc = { version = "1.1.0", path = "../swc_malloc" }
swc_malloc = { version = "1.2.0", path = "../swc_malloc" }
testing = { version = "8.0.0", path = "../testing" }

[[bench]]
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_html_minifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ swc_html_visit = { version = "8.0.0", path = "../swc_html_visit" }
codspeed-criterion-compat = { workspace = true }
criterion = { workspace = true }

swc_malloc = { version = "1.1.0", path = "../swc_malloc" }
swc_malloc = { version = "1.2.0", path = "../swc_malloc" }
testing = { version = "8.0.0", path = "../testing" }

[[bench]]
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_html_parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ swc_html_ast = { version = "8.0.0", path = "../swc_html_ast", features = [
"serde-impl",
] }
swc_html_visit = { version = "8.0.0", path = "../swc_html_visit" }
swc_malloc = { version = "1.1.0", path = "../swc_malloc" }
swc_malloc = { version = "1.2.0", path = "../swc_malloc" }
testing = { version = "8.0.0", path = "../testing" }

[[bench]]
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_malloc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = { workspace = true }
license = { workspace = true }
name = "swc_malloc"
repository = { workspace = true }
version = "1.1.0"
version = "1.2.0"

[lib]
bench = false
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_node_bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ swc_ecma_parser = { version = "10.0.0", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "14.0.0", path = "../swc_ecma_transforms" }
swc_ecma_utils = { version = "11.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "8.0.0", path = "../swc_ecma_visit" }
swc_malloc = { version = "1.1.0", path = "../swc_malloc" }
swc_malloc = { version = "1.2.0", path = "../swc_malloc" }

[dev-dependencies]
pretty_assertions = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_plugin_runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ swc_ecma_ast = { version = "8.0.0", path = "../swc_ecma_ast", features = [
swc_ecma_loader = { version = "8.0.0", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "10.0.0", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "8.0.0", path = "../swc_ecma_visit" }
swc_malloc = { version = "1.1.0", path = "../swc_malloc" }
swc_malloc = { version = "1.2.0", path = "../swc_malloc" }
testing = { version = "8.0.0", path = "../testing" }
tokio = { workspace = true, features = ["rt"] }

Expand Down

0 comments on commit 3e8bb78

Please sign in to comment.