mirror of
https://github.com/swc-project/swc.git
synced 2024-12-28 08:04:43 +03:00
chore: Bump crates
This commit is contained in:
parent
16e9d4ca31
commit
7517c4f98f
@ -10,6 +10,9 @@
|
||||
|
||||
- **(es/quote)** Support `AssignTarget`, really ([#8603](https://github.com/swc-project/swc/issues/8603)) ([ef91661](https://github.com/swc-project/swc/commit/ef916614f1b714bc765721fd7a35a4a471ac6811))
|
||||
|
||||
|
||||
- **(es/quote)** Fix code generation of `AssignTarget` ([#8604](https://github.com/swc-project/swc/issues/8604)) ([16e9d4c](https://github.com/swc-project/swc/commit/16e9d4ca31561caf4fb2a5182337eae78395dbe6))
|
||||
|
||||
### Refactor
|
||||
|
||||
|
||||
@ -1488,10 +1491,4 @@
|
||||
|
||||
- **(es/minifier)** Compress common sub expressions in sequences ([#7587](https://github.com/swc-project/swc/issues/7587)) ([ff1ad95](https://github.com/swc-project/swc/commit/ff1ad95b59732282c014474609bbb405e0f9edb4))
|
||||
|
||||
### Refactor
|
||||
|
||||
|
||||
|
||||
- **(es/compat)** Remove usage of `box_patterns` ([#7613](https://github.com/swc-project/swc/issues/7613)) ([0a26066](https://github.com/swc-project/swc/commit/0a26066b7b01d06a6d9e3df2ab7c7e47f4aa9e4c))
|
||||
|
||||
<!-- generated by git-cliff -->
|
||||
|
10
Cargo.lock
generated
10
Cargo.lock
generated
@ -3880,7 +3880,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_cli_impl"
|
||||
version = "0.8.2"
|
||||
version = "0.8.3"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert_cmd",
|
||||
@ -3985,7 +3985,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_core"
|
||||
version = "0.90.2"
|
||||
version = "0.90.3"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"binding_macros",
|
||||
@ -4613,7 +4613,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_quote"
|
||||
version = "0.59.2"
|
||||
version = "0.59.3"
|
||||
dependencies = [
|
||||
"swc_atoms",
|
||||
"swc_common",
|
||||
@ -4624,7 +4624,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_quote_macros"
|
||||
version = "0.54.2"
|
||||
version = "0.54.3"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"proc-macro2",
|
||||
@ -4967,7 +4967,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecmascript"
|
||||
version = "0.239.2"
|
||||
version = "0.239.3"
|
||||
dependencies = [
|
||||
"swc_ecma_ast",
|
||||
"swc_ecma_codegen",
|
||||
|
@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_cli_impl"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.8.2"
|
||||
version = "0.8.3"
|
||||
|
||||
[[bin]]
|
||||
name = "swc"
|
||||
@ -40,7 +40,7 @@ tracing-futures = "0.2.5"
|
||||
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
|
||||
walkdir = "2"
|
||||
|
||||
swc_core = { version = "0.90.2", features = [
|
||||
swc_core = { version = "0.90.3", features = [
|
||||
"trace_macro",
|
||||
"common_concurrent",
|
||||
"base_concurrent",
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_core"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.90.2"
|
||||
version = "0.90.3"
|
||||
[package.metadata.docs.rs]
|
||||
features = [
|
||||
"allocator_node",
|
||||
@ -345,7 +345,7 @@ swc_ecma_loader = { optional = true, version = "0.45.18", path
|
||||
swc_ecma_minifier = { optional = true, version = "0.192.0", path = "../swc_ecma_minifier" }
|
||||
swc_ecma_parser = { optional = true, version = "0.143.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_preset_env = { optional = true, version = "0.206.0", path = "../swc_ecma_preset_env" }
|
||||
swc_ecma_quote_macros = { optional = true, version = "0.54.2", path = "../swc_ecma_quote_macros" }
|
||||
swc_ecma_quote_macros = { optional = true, version = "0.54.3", path = "../swc_ecma_quote_macros" }
|
||||
swc_ecma_transforms_base = { optional = true, version = "0.137.0", path = "../swc_ecma_transforms_base" }
|
||||
swc_ecma_transforms_compat = { optional = true, version = "0.163.0", path = "../swc_ecma_transforms_compat" }
|
||||
swc_ecma_transforms_module = { optional = true, version = "0.180.0", path = "../swc_ecma_transforms_module" }
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecma_quote"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.59.2"
|
||||
version = "0.59.3"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
@ -15,7 +15,7 @@ bench = false
|
||||
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
|
||||
swc_common = { version = "0.33.16", path = "../swc_common" }
|
||||
swc_ecma_ast = { version = "0.112.0", path = "../swc_ecma_ast" }
|
||||
swc_ecma_quote_macros = { version = "0.54.2", path = "../swc_ecma_quote_macros" }
|
||||
swc_ecma_quote_macros = { version = "0.54.3", path = "../swc_ecma_quote_macros" }
|
||||
|
||||
[dev-dependencies]
|
||||
testing = { version = "0.35.17", path = "../testing" }
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecma_quote_macros"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.54.2"
|
||||
version = "0.54.3"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecmascript"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.239.2"
|
||||
version = "0.239.3"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -43,7 +43,7 @@ swc_ecma_codegen = { version = "0.148.0", path = "../swc_ecma_codegen", optio
|
||||
swc_ecma_minifier = { version = "0.192.0", path = "../swc_ecma_minifier", optional = true }
|
||||
swc_ecma_parser = { version = "0.143.0", path = "../swc_ecma_parser", optional = true, default-features = false }
|
||||
swc_ecma_preset_env = { version = "0.206.0", path = "../swc_ecma_preset_env", optional = true }
|
||||
swc_ecma_quote = { version = "0.59.2", path = "../swc_ecma_quote", optional = true }
|
||||
swc_ecma_quote = { version = "0.59.3", path = "../swc_ecma_quote", optional = true }
|
||||
swc_ecma_transforms = { version = "0.229.0", path = "../swc_ecma_transforms", optional = true }
|
||||
swc_ecma_utils = { version = "0.127.0", path = "../swc_ecma_utils", optional = true }
|
||||
swc_ecma_visit = { version = "0.98.0", path = "../swc_ecma_visit", optional = true }
|
||||
|
Loading…
Reference in New Issue
Block a user