Skip to content

Commit

Permalink
chore: Publish crates with swc_core v10.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Jan 22, 2025
1 parent 8f8dcaa commit 4ebea77
Show file tree
Hide file tree
Showing 12 changed files with 32 additions and 30 deletions.
6 changes: 0 additions & 6 deletions .changeset/moody-laws-explain.md

This file was deleted.

32 changes: 20 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
# Changelog
## [unreleased]

### Features



- **(es/minifier)** Compress negate eq ([#9911](https://github.com/swc-project/swc/issues/9911)) ([e8f23cf](https://github.com/swc-project/swc/commit/e8f23cf92146828ea2a8b65724c7a6824acf9f0f))

### Miscellaneous Tasks



- **(es/minifier)** Add a script for samply profiler ([#9923](https://github.com/swc-project/swc/issues/9923)) ([8f8dcaa](https://github.com/swc-project/swc/commit/8f8dcaac2f22f71de538802034db5756e84c7f55))

### Refactor



- **(es/minifier)** Make `minify-all` example sequential ([#9912](https://github.com/swc-project/swc/issues/9912)) ([5b5c87e](https://github.com/swc-project/swc/commit/5b5c87e72480638ae382d519980302702e333305))

## [1.10.9] - 2025-01-21

### Bug Fixes
Expand Down Expand Up @@ -1553,22 +1573,10 @@

## [1.6.7] - 2024-07-03

### Refactor



- **(es/typescript)** Extract type annotation proposal out ([#9127](https://github.com/swc-project/swc/issues/9127)) ([dfee5f8](https://github.com/swc-project/swc/commit/dfee5f838b76dae012393e207902effa0a69dd0d))

### Testing



- **(bindings/ts)** Test Wasm binding ([#9128](https://github.com/swc-project/swc/issues/9128)) ([c6d6db3](https://github.com/swc-project/swc/commit/c6d6db3661ec93b9ebb8ca55ff88726f66b3d5e5))

### Build



- **(bindings)** Fix build of typescript binding ([#9125](https://github.com/swc-project/swc/issues/9125)) ([f409bc0](https://github.com/swc-project/swc/commit/f409bc09d5613db8342e98552efc520f9c2c393c))

<!-- generated by git-cliff -->
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/dbg-swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ swc_common = { version = "5.0.0", features = [
], path = "../swc_common" }
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "7.4.1", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "7.5.0", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", features = [
"node",
"tsc",
] }
swc_ecma_minifier = { version = "7.4.1", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "7.5.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "9.0.0", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "9.0.0", path = "../swc_ecma_transforms", features = [
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 @@ -63,7 +63,7 @@ swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", features = [
"node",
"cache",
] }
swc_ecma_minifier = { version = "7.4.1", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "7.5.0", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_transforms_proposal = { version = "7.0.1", path = "../swc_ecma_transforms_proposal" }
Expand Down
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 = "10.6.1", features = [
swc_core = { version = "10.7.0", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_compiler_base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ swc_common = { version = "5.0.0", path = "../swc_common", features = [
swc_config = { version = "1.0.0", path = "../swc_config" }
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "7.4.1", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "7.5.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_timer = { version = "1.0.0", path = "../swc_timer" }
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 = "10.6.1"
version = "10.7.0"
[package.metadata.docs.rs]
features = [
"allocator_node",
Expand Down Expand Up @@ -357,7 +357,7 @@ swc_ecma_ast = { optional = true, version = "5.0.3", path =
swc_ecma_codegen = { optional = true, version = "5.1.0", path = "../swc_ecma_codegen" }
swc_ecma_lints = { optional = true, version = "7.0.1", path = "../swc_ecma_lints" }
swc_ecma_loader = { optional = true, version = "5.0.0", path = "../swc_ecma_loader" }
swc_ecma_minifier = { optional = true, version = "7.4.1", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { optional = true, version = "7.5.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "6.0.2", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { optional = true, version = "9.0.0", path = "../swc_ecma_preset_env" }
swc_ecma_quote_macros = { optional = true, version = "6.0.0", path = "../swc_ecma_quote_macros" }
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 @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"]
license = { workspace = true }
name = "swc_ecma_minifier"
repository = { workspace = true }
version = "7.4.1"
version = "7.5.0"

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecmascript/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
[dependencies]
swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen", optional = true }
swc_ecma_minifier = { version = "7.4.1", path = "../swc_ecma_minifier", optional = true }
swc_ecma_minifier = { version = "7.5.0", path = "../swc_ecma_minifier", optional = true }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser", optional = true, default-features = false }
swc_ecma_preset_env = { version = "9.0.0", path = "../swc_ecma_preset_env", optional = true }
swc_ecma_quote = { version = "6.0.0", path = "../swc_ecma_quote", optional = true }
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 @@ -36,7 +36,7 @@ swc_ecma_ast = { version = "5.0.3", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "5.1.0", path = "../swc_ecma_codegen", features = [
"serde-impl",
] }
swc_ecma_minifier = { version = "7.4.1", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "7.5.0", path = "../swc_ecma_minifier", features = [
"extra-serde",
] }
swc_ecma_parser = { version = "6.0.2", path = "../swc_ecma_parser" }
Expand Down

0 comments on commit 4ebea77

Please sign in to comment.