mirror of
https://github.com/swc-project/swc.git
synced 2024-12-24 22:22:34 +03:00
chore: Bump crates
This commit is contained in:
parent
6a48be4b6b
commit
4f139d4f27
@ -1,6 +1,12 @@
|
||||
# Changelog
|
||||
## [unreleased]
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
|
||||
|
||||
- **(es/quote)** Allow variables typed `AssignTarget` ([#8602](https://github.com/swc-project/swc/issues/8602)) ([6a48be4](https://github.com/swc-project/swc/commit/6a48be4b6b91c71687c2edc1cf9db9538d9f5650))
|
||||
|
||||
### Refactor
|
||||
|
||||
|
||||
@ -1473,9 +1479,6 @@
|
||||
|
||||
- **(es/parser)** Re-lex `<<` as two `<`-s if required ([#7439](https://github.com/swc-project/swc/issues/7439)) ([6850372](https://github.com/swc-project/swc/commit/68503726a78cfc37cd995eda69a3e8982b6fdf57))
|
||||
|
||||
|
||||
- **(plugin/runner)** Disable wasi env cleanup ([#7607](https://github.com/swc-project/swc/issues/7607)) ([8209594](https://github.com/swc-project/swc/commit/8209594a8c11d2a65061763fef5d3a7780976f39))
|
||||
|
||||
### Features
|
||||
|
||||
|
||||
|
10
Cargo.lock
generated
10
Cargo.lock
generated
@ -3880,7 +3880,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_cli_impl"
|
||||
version = "0.8.0"
|
||||
version = "0.8.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert_cmd",
|
||||
@ -3985,7 +3985,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_core"
|
||||
version = "0.90.0"
|
||||
version = "0.90.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"binding_macros",
|
||||
@ -4613,7 +4613,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_quote"
|
||||
version = "0.59.0"
|
||||
version = "0.59.1"
|
||||
dependencies = [
|
||||
"swc_atoms",
|
||||
"swc_common",
|
||||
@ -4624,7 +4624,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_quote_macros"
|
||||
version = "0.54.0"
|
||||
version = "0.54.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"proc-macro2",
|
||||
@ -4967,7 +4967,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecmascript"
|
||||
version = "0.239.0"
|
||||
version = "0.239.1"
|
||||
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.0"
|
||||
version = "0.8.1"
|
||||
|
||||
[[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.0", features = [
|
||||
swc_core = { version = "0.90.1", 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.0"
|
||||
version = "0.90.1"
|
||||
[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.0", path = "../swc_ecma_quote_macros" }
|
||||
swc_ecma_quote_macros = { optional = true, version = "0.54.1", 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.0"
|
||||
version = "0.59.1"
|
||||
|
||||
[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.0", path = "../swc_ecma_quote_macros" }
|
||||
swc_ecma_quote_macros = { version = "0.54.1", 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.0"
|
||||
version = "0.54.1"
|
||||
|
||||
[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.0"
|
||||
version = "0.239.1"
|
||||
|
||||
[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.0", path = "../swc_ecma_quote", optional = true }
|
||||
swc_ecma_quote = { version = "0.59.1", 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