chore: Publish crates with swc_core v1.0.6

This commit is contained in:
강동윤 (Donny) 2024-10-26 17:33:51 +09:00
parent 78500af546
commit 17b05f283d
7 changed files with 16 additions and 13 deletions

View File

@ -1,6 +0,0 @@
---
swc_core: patch
swc_typescript: patch
---
fix(typescript): Check whether the method is abstract when checking `is_overload`

View File

@ -16,12 +16,21 @@
- **(es/renamer)** Check `preserved` in normal renaming mode ([#9666](https://github.com/swc-project/swc/issues/9666)) ([87b4e10](https://github.com/swc-project/swc/commit/87b4e10e5dbeb236ee5232d85d3176472fa4a9d0))
- **(typescript)** Check whether the method is abstract when checking `is_overload` ([#9678](https://github.com/swc-project/swc/issues/9678)) ([78500af](https://github.com/swc-project/swc/commit/78500af546ea3c92f016c729e173c66fccbe46ed))
### Documentation
- **(contributing)** Document changeset ([#9667](https://github.com/swc-project/swc/issues/9667)) ([602c667](https://github.com/swc-project/swc/commit/602c667b9d435fa9155345952379287cb11e59db))
### Miscellaneous Tasks
- **(deps)** Update dependency swc-plugin-coverage-instrument to ^0.0.25 ([#9676](https://github.com/swc-project/swc/issues/9676)) ([b8d255b](https://github.com/swc-project/swc/commit/b8d255bf5aa65a5589331b0924269a23b3052137))
## [1.7.39] - 2024-10-22
### Bug Fixes

4
Cargo.lock generated
View File

@ -4115,7 +4115,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "1.0.5"
version = "1.0.6"
dependencies = [
"anyhow",
"binding_macros",
@ -5514,7 +5514,7 @@ dependencies = [
[[package]]
name = "swc_typescript"
version = "1.0.0"
version = "1.0.1"
dependencies = [
"swc_atoms",
"swc_common",

View File

@ -107,7 +107,7 @@ swc_plugin_proxy = { version = "1.0.0", path = "../swc_plugin_proxy", optional =
swc_plugin_runner = { version = "1.0.0", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_timer = { version = "1.0.0", path = "../swc_timer" }
swc_transform_common = { version = "1.0.0", path = "../swc_transform_common" }
swc_typescript = { version = "1.0.0", path = "../swc_typescript" }
swc_typescript = { version = "1.0.1", path = "../swc_typescript" }
swc_visit = { version = "1.0.0", path = "../swc_visit" }
[dependencies.tokio]

View File

@ -39,7 +39,7 @@ tracing-futures = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
walkdir = { workspace = true }
swc_core = { version = "1.0.5", features = [
swc_core = { version = "1.0.6", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "https://github.com/swc-project/swc.git"
version = "1.0.5"
version = "1.0.6"
[package.metadata.docs.rs]
features = [
"allocator_node",
@ -380,7 +380,7 @@ swc_plugin_macro = { optional = true, version = "1.0.0", path =
swc_plugin_proxy = { optional = true, version = "1.0.0", path = "../swc_plugin_proxy" }
swc_trace_macro = { optional = true, version = "2.0.0", path = "../swc_trace_macro" }
swc_transform_common = { optional = true, version = "1.0.0", path = "../swc_transform_common" }
swc_typescript = { optional = true, version = "1.0.0", path = "../swc_typescript" }
swc_typescript = { optional = true, version = "1.0.1", path = "../swc_typescript" }
testing = { optional = true, version = "1.0.0", path = "../testing" }
# TODO: eventually swc_plugin_runner needs to remove default features
swc_allocator = { version = "1.0.0", path = "../swc_allocator", default-features = false }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_typescript"
repository = { workspace = true }
version = "1.0.0"
version = "1.0.1"
[dependencies]
thiserror = { workspace = true }