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 21, 2023
1 parent a06d5b2 commit 37bb0e3
Show file tree
Hide file tree
Showing 25 changed files with 110 additions and 110 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,9 @@
- **(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/compat)** Use correct `span.lo` in class transforms ([#8439](https://github.com/swc-project/swc/issues/8439)) ([a06d5b2](https://github.com/swc-project/swc/commit/a06d5b23416d8f4f45334e5edaed3da53f9f5777))


- **(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 @@ -647,9 +650,6 @@
- **(es/codegen)** Respect `ascii_only: false` for `StrLit` ([#8217](https://github.com/swc-project/swc/issues/8217)) ([1a26be2](https://github.com/swc-project/swc/commit/1a26be2a271437894b1cda86c4707014e684b5ba))


- **(es/compat)** Implement auto accessors fully ([#7370](https://github.com/swc-project/swc/issues/7370)) ([cad18fa](https://github.com/swc-project/swc/commit/cad18fae4b93a916ad2c45b8741e08baeea78b98))


- **(es/compat)** Implement transform for explicit resource management ([#7376](https://github.com/swc-project/swc/issues/7376)) ([bcd5a1d](https://github.com/swc-project/swc/commit/bcd5a1d6665bc6f4aaa857d1f88b0da82a6c4a04))


Expand Down
46 changes: 23 additions & 23 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.2"
version = "0.61.3"

[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.2", path = "../swc" }
swc = { optional = true, version = "0.270.3", 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.2", path = "../swc_ecma_transforms" }
swc_ecma_transforms = { optional = true, version = "0.227.3", 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.5"
version = "0.90.6"

[[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.2", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "0.190.3", 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.2"
version = "0.270.3"

[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.2", path = "../swc_compiler_base" }
swc_compiler_base = { version = "0.4.3", 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.2", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "0.190.3", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.141.33", path = "../swc_ecma_parser" }
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 = [
swc_ecma_preset_env = { version = "0.204.3", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.227.3", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
Expand All @@ -96,8 +96,8 @@ swc_ecma_transforms = { version = "0.227.2", 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.2", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.196.2", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_compat = { version = "0.161.3", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.196.3", 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.2"
version = "0.223.3"

[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.2", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.196.3", 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.2", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "0.190.3", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
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_ecma_transforms_proposal = { version = "0.169.3", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.181.3", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.186.3", 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.2"
version = "0.5.3"

[[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.2", features = [
swc_core = { version = "0.87.3", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_compiler_base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_compiler_base"
repository = "https://github.com/swc-project/swc.git"
version = "0.4.2"
version = "0.4.3"

[features]
node = ["napi", "napi-derive"]
Expand All @@ -25,7 +25,7 @@ swc_common = { version = "0.33.12", path = "../swc_common", features = [
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" }
swc_ecma_minifier = { version = "0.190.2", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "0.190.3", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.141.33", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "0.96.15", path = "../swc_ecma_visit" }
swc_timer = { version = "0.21.14", path = "../swc_timer" }
Expand Down
Loading

0 comments on commit 37bb0e3

Please sign in to comment.