Skip to content

Commit

Permalink
chore: Bump crates
Browse files Browse the repository at this point in the history
  • Loading branch information
swc-bot committed Mar 4, 2024
1 parent b474382 commit 98aa982
Show file tree
Hide file tree
Showing 82 changed files with 391 additions and 391 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@

- **(visit)** Use qualified paths for generated codes ([#8655](https://github.com/swc-project/swc/issues/8655)) ([671c4a7](https://github.com/swc-project/swc/commit/671c4a78dd294591a0b18a44e18edc29bba30a52))


- **(visit)** Drop `pmutil` to improve compile time ([#8673](https://github.com/swc-project/swc/issues/8673)) ([b474382](https://github.com/swc-project/swc/commit/b47438245a0fb7f12b325a66a756beeaf58c3c9e))

## [1.4.2] - 2024-02-19

### Bug Fixes
Expand Down Expand Up @@ -1425,9 +1428,6 @@



- **(es/ast)** Avoid `transmute` in impl of `Hash` for `Number` ([#7771](https://github.com/swc-project/swc/issues/7771)) ([2258274](https://github.com/swc-project/swc/commit/225827423355cab8cd3c0ae80f335cd2873e6cd4))


- **(es/minifier)** Support stable rustc ([#7734](https://github.com/swc-project/swc/issues/7734)) ([f7afe7e](https://github.com/swc-project/swc/commit/f7afe7edecc65f41845721c75b77d2f6dba04a6a))


Expand Down
70 changes: 35 additions & 35 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 @@ -34,10 +34,10 @@ binding_wasm = [
[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "0.273.15", path = "../swc" }
swc_common = { optional = true, version = "0.33.18", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.112.4", path = "../swc_ecma_ast" }
swc_common = { optional = true, version = "0.33.19", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.229.12", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.98.5", path = "../swc_ecma_visit" }
swc_ecma_visit = { optional = true, version = "0.98.6", path = "../swc_ecma_visit" }

# Optional deps for the wasm binding macro
anyhow = { optional = true, version = "1.0.71" }
Expand Down
10 changes: 5 additions & 5 deletions crates/dbg-swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@ tracing-subscriber = { version = "0.3.17", features = ["fmt", "env-filter"] }
url = "2"

swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.18", features = [
swc_common = { version = "0.33.19", features = [
"concurrent",
"tty-emitter",
], path = "../swc_common" }
swc_ecma_ast = { version = "0.112.4", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.9", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.192.12", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.143.7", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.137.12", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.98.5", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.17", path = "../swc_error_reporters" }
swc_timer = { version = "0.21.19", path = "../swc_timer" }
swc_ecma_visit = { version = "0.98.6", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.18", path = "../swc_error_reporters" }
swc_timer = { version = "0.21.20", path = "../swc_timer" }
6 changes: 3 additions & 3 deletions crates/jsdoc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ nom = "7.1.3"
serde = { version = "1", features = ["derive"], optional = true }

swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.18", path = "../swc_common" }
swc_common = { version = "0.33.19", path = "../swc_common" }

[dev-dependencies]
anyhow = "1"
dashmap = "5.4.0"

swc_ecma_ast = { version = "0.112.4", path = "../swc_ecma_ast" }
swc_ecma_ast = { version = "0.112.5", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.143.7", path = "../swc_ecma_parser" }
testing = { version = "0.35.19", path = "../testing" }
testing = { version = "0.35.20", path = "../testing" }

0 comments on commit 98aa982

Please sign in to comment.