Skip to content

Commit 9c35520

Browse files
committed
chore: Publish crates with swc_core v1.0.3
1 parent f735108 commit 9c35520

File tree

10 files changed

+13
-19
lines changed

10 files changed

+13
-19
lines changed

.changeset/dull-shirts-judge.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
- **(es/parser)** Correct `>` and `<` when exit type context ([#9653](https://github.com/swc-project/swc/issues/9653)) ([abffc07](https://github.com/swc-project/swc/commit/abffc073561b3ba3906aa0923ef3880e5e30d538))
99

10+
11+
- **(es/proposal)** Use `tsc` version of explicit resource management ([#9585](https://github.com/swc-project/swc/issues/9585)) ([f735108](https://github.com/swc-project/swc/commit/f7351080174c61bad5950be9b30c75c4f17ebe3e))
12+
1013
### Miscellaneous Tasks
1114

1215

@@ -1329,9 +1332,6 @@
13291332
- **(es/es2015)** Fix `typeof` comparions with `"object"` ([#8976](https://github.com/swc-project/swc/issues/8976)) ([51e0639](https://github.com/swc-project/swc/commit/51e0639ede63490bea9da7a4d8dbfdfe2185b169))
13301333

13311334

1332-
- **(es/minifier)** Fix comparison of `-0.0` and `0` ([#8973](https://github.com/swc-project/swc/issues/8973)) ([2a43df4](https://github.com/swc-project/swc/commit/2a43df49848267ba68a320370e3a5818bf14478e))
1333-
1334-
13351335
- **(es/minifier)** Mark usage in `TaggedTpl` as ref ([#8975](https://github.com/swc-project/swc/issues/8975)) ([a753c8d](https://github.com/swc-project/swc/commit/a753c8d1912940b142f8931dc700c19234b73308))
13361336

13371337
### Testing

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ swc_ecma_loader = { version = "1.0.0", path = "../swc_ecma_loader", features = [
6666
swc_ecma_minifier = { version = "1.0.1", path = "../swc_ecma_minifier", features = [
6767
"concurrent",
6868
] }
69-
swc_ecma_transforms_proposal = { version = "1.0.0", path = "../swc_ecma_transforms_proposal" }
69+
swc_ecma_transforms_proposal = { version = "1.0.1", path = "../swc_ecma_transforms_proposal" }
7070
swc_ecma_transforms_react = { version = "1.0.0", path = "../swc_ecma_transforms_react" }
7171
swc_ecma_transforms_typescript = { version = "1.0.1", path = "../swc_ecma_transforms_typescript" }
7272
swc_malloc = { version = "1.0.0", path = "../swc_malloc" }

crates/swc_cli_impl/Cargo.toml

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

42-
swc_core = { version = "1.0.2", features = [
42+
swc_core = { version = "1.0.3", features = [
4343
"trace_macro",
4444
"common_concurrent",
4545
"base_concurrent",

crates/swc_core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "swc_core"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "1.0.2"
9+
version = "1.0.3"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"allocator_node",
@@ -365,7 +365,7 @@ swc_ecma_transforms_base = { optional = true, version = "1.0.0", path =
365365
swc_ecma_transforms_compat = { optional = true, version = "1.0.0", path = "../swc_ecma_transforms_compat" }
366366
swc_ecma_transforms_module = { optional = true, version = "1.0.0", path = "../swc_ecma_transforms_module" }
367367
swc_ecma_transforms_optimization = { optional = true, version = "1.0.0", path = "../swc_ecma_transforms_optimization" }
368-
swc_ecma_transforms_proposal = { optional = true, version = "1.0.0", path = "../swc_ecma_transforms_proposal" }
368+
swc_ecma_transforms_proposal = { optional = true, version = "1.0.1", path = "../swc_ecma_transforms_proposal" }
369369
swc_ecma_transforms_react = { optional = true, version = "1.0.0", path = "../swc_ecma_transforms_react" }
370370
swc_ecma_transforms_testing = { optional = true, version = "1.0.0", path = "../swc_ecma_transforms_testing" }
371371
swc_ecma_transforms_typescript = { optional = true, version = "1.0.1", path = "../swc_ecma_transforms_typescript" }

crates/swc_ecma_transforms/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_tran
3939
swc_ecma_transforms_compat = { version = "1.0.0", path = "../swc_ecma_transforms_compat", optional = true }
4040
swc_ecma_transforms_module = { version = "1.0.0", path = "../swc_ecma_transforms_module", optional = true }
4141
swc_ecma_transforms_optimization = { version = "1.0.0", path = "../swc_ecma_transforms_optimization", optional = true }
42-
swc_ecma_transforms_proposal = { version = "1.0.0", path = "../swc_ecma_transforms_proposal", optional = true }
42+
swc_ecma_transforms_proposal = { version = "1.0.1", path = "../swc_ecma_transforms_proposal", optional = true }
4343
swc_ecma_transforms_react = { version = "1.0.0", path = "../swc_ecma_transforms_react", optional = true }
4444
swc_ecma_transforms_typescript = { version = "1.0.1", path = "../swc_ecma_transforms_typescript", optional = true }
4545
swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" }

crates/swc_ecma_transforms_optimization/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ swc_fast_graph = { version = "2.0.0", path = "../swc_fast_graph" }
4444
[dev-dependencies]
4545
swc_ecma_transforms_compat = { version = "1.0.0", path = "../swc_ecma_transforms_compat" }
4646
swc_ecma_transforms_module = { version = "1.0.0", path = "../swc_ecma_transforms_module" }
47-
swc_ecma_transforms_proposal = { version = "1.0.0", path = "../swc_ecma_transforms_proposal" }
47+
swc_ecma_transforms_proposal = { version = "1.0.1", path = "../swc_ecma_transforms_proposal" }
4848
swc_ecma_transforms_react = { version = "1.0.0", path = "../swc_ecma_transforms_react" }
4949
swc_ecma_transforms_testing = { version = "1.0.0", path = "../swc_ecma_transforms_testing" }
5050
swc_ecma_transforms_typescript = { version = "1.0.1", path = "../swc_ecma_transforms_typescript" }

crates/swc_ecma_transforms_proposal/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"]
77
license = "Apache-2.0"
88
name = "swc_ecma_transforms_proposal"
99
repository = "https://github.com/swc-project/swc.git"
10-
version = "1.0.0"
10+
version = "1.0.1"
1111

1212
[lib]
1313
bench = false

crates/swc_ecma_transforms_typescript/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ criterion = { workspace = true }
3131
swc_ecma_codegen = { version = "1.0.0", path = "../swc_ecma_codegen" }
3232
swc_ecma_parser = { version = "1.0.1", path = "../swc_ecma_parser" }
3333
swc_ecma_transforms_compat = { version = "1.0.0", path = "../swc_ecma_transforms_compat" }
34-
swc_ecma_transforms_proposal = { version = "1.0.0", path = "../swc_ecma_transforms_proposal" }
34+
swc_ecma_transforms_proposal = { version = "1.0.1", path = "../swc_ecma_transforms_proposal" }
3535
swc_ecma_transforms_testing = { version = "1.0.0", path = "../swc_ecma_transforms_testing" }
3636
testing = { version = "1.0.0", path = "../testing" }
3737

0 commit comments

Comments
 (0)