Skip to content

Commit

Permalink
chore: Publish crates
Browse files Browse the repository at this point in the history
  • Loading branch information
swc-bot committed Dec 17, 2023
1 parent 56992e3 commit d6cd214
Show file tree
Hide file tree
Showing 29 changed files with 126 additions and 126 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,9 @@
- **(es/compat)** Preserve spread in the `generator` pass ([#8401](https://github.com/swc-project/swc/issues/8401)) ([29bec98](https://github.com/swc-project/swc/commit/29bec986471b2782570416698041e3ea92feccac))


- **(es/compat)** Preserve comment for arrow body ([#8427](https://github.com/swc-project/swc/issues/8427)) ([56992e3](https://github.com/swc-project/swc/commit/56992e3dccad6f9ce37b70bf77363468c310d875))


- **(es/decorators)** Fix a regression about class expressions ([#8102](https://github.com/swc-project/swc/issues/8102)) ([cb4361f](https://github.com/swc-project/swc/commit/cb4361f2931cf222edbb449db6fe2c261c4b735d))


Expand Down Expand Up @@ -722,9 +725,6 @@
- **(es/optimization)** Support `default` imports for const modules ([#7604](https://github.com/swc-project/swc/issues/7604)) ([ac02b84](https://github.com/swc-project/swc/commit/ac02b84918932f2d51840b4c4cef9adf460fce40))


- **(es/parser)** Implement explicit resource management ([#7322](https://github.com/swc-project/swc/issues/7322)) ([041b491](https://github.com/swc-project/swc/commit/041b49146627000971ef05f60e11f916182c67f1))


- **(es/parser)** Disallow tagged tpl in optional chaining ([#7515](https://github.com/swc-project/swc/issues/7515)) ([6c00a24](https://github.com/swc-project/swc/commit/6c00a2422addf0e402bb221e80f6f8acad839b28))


Expand Down
54 changes: 27 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions crates/binding_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "binding_macros"
repository = "https://github.com/swc-project/swc.git"
version = "0.61.1"
version = "0.61.2"

[lib]
bench = false
Expand Down Expand Up @@ -33,10 +33,10 @@ binding_wasm = [

[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "0.270.1", path = "../swc" }
swc = { optional = true, version = "0.270.2", path = "../swc" }
swc_common = { optional = true, version = "0.33.12", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.110.15", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.227.1", path = "../swc_ecma_transforms" }
swc_ecma_transforms = { optional = true, version = "0.227.2", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.96.15", path = "../swc_ecma_visit" }

# Optional deps for the wasm binding macro
Expand Down
4 changes: 2 additions & 2 deletions crates/dbg-swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "dbg-swc"
repository = "https://github.com/kdy1/dbg-swc.git"
version = "0.90.3"
version = "0.90.4"

[[bin]]
bench = false
Expand All @@ -32,7 +32,7 @@ swc_common = { version = "0.33.12", features = [
], path = "../swc_common" }
swc_ecma_ast = { version = "0.110.15", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.146.45", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.190.1", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "0.190.2", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.141.33", path = "../swc_ecma_parser" }
Expand Down
14 changes: 7 additions & 7 deletions crates/swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc"
repository = "https://github.com/swc-project/swc.git"
version = "0.270.1"
version = "0.270.2"

[lib]
bench = false
Expand Down Expand Up @@ -73,7 +73,7 @@ swc_common = { version = "0.33.12", path = "../swc_common", features = [
"sourcemap",
"parking_lot",
] }
swc_compiler_base = { version = "0.4.1", path = "../swc_compiler_base" }
swc_compiler_base = { version = "0.4.2", path = "../swc_compiler_base" }
swc_config = { version = "0.1.9", path = "../swc_config" }
swc_ecma_ast = { version = "0.110.15", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.146.45", path = "../swc_ecma_codegen" }
Expand All @@ -84,10 +84,10 @@ swc_ecma_loader = { version = "0.45.13", path = "../swc_ecma_loader", features =
"node",
"tsc",
] }
swc_ecma_minifier = { version = "0.190.1", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "0.190.2", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.141.33", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.204.1", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.227.1", path = "../swc_ecma_transforms", features = [
swc_ecma_preset_env = { version = "0.204.2", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.227.2", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
Expand All @@ -96,8 +96,8 @@ swc_ecma_transforms = { version = "0.227.1", path = "../swc_ecma_transforms", fe
"typescript",
] }
swc_ecma_transforms_base = { version = "0.135.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.161.1", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.196.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_compat = { version = "0.161.2", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.196.2", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.125.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.96.15", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.12", path = "../swc_error_reporters" }
Expand Down
12 changes: 6 additions & 6 deletions crates/swc_bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ include = ["Cargo.toml", "build.rs", "src/**/*.rs", "src/**/*.js"]
license = "Apache-2.0"
name = "swc_bundler"
repository = "https://github.com/swc-project/swc.git"
version = "0.223.1"
version = "0.223.2"

[package.metadata.docs.rs]
all-features = true
Expand Down Expand Up @@ -44,7 +44,7 @@ swc_ecma_codegen = { version = "0.146.45", path = "../swc_ecma_c
swc_ecma_loader = { version = "0.45.13", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.141.33", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.135.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.196.1", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.196.2", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.125.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.96.15", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.21.13", path = "../swc_fast_graph/" }
Expand All @@ -63,11 +63,11 @@ swc_ecma_loader = { version = "0.45.13", path = "../swc_ecma_loader", features =
"node",
"cache",
] }
swc_ecma_minifier = { version = "0.190.1", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "0.190.2", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_transforms_proposal = { version = "0.169.1", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.181.1", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.186.1", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_proposal = { version = "0.169.2", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.181.2", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.186.2", path = "../swc_ecma_transforms_typescript" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.14", path = "../testing" }
4 changes: 2 additions & 2 deletions crates/swc_cli_impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.5.1"
version = "0.5.2"

[[bin]]
name = "swc"
Expand Down Expand Up @@ -40,7 +40,7 @@ tracing-futures = "0.2.5"
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
walkdir = "2"

swc_core = { version = "0.87.1", features = [
swc_core = { version = "0.87.2", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",
Expand Down
Loading

0 comments on commit d6cd214

Please sign in to comment.