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 Feb 2, 2024
1 parent 8413a6c commit ef21736
Show file tree
Hide file tree
Showing 45 changed files with 262 additions and 262 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
- **(es/codegen)** Fix codegen of async methods with decorators ([#8575](https://github.com/swc-project/swc/issues/8575)) ([8c32225](https://github.com/swc-project/swc/commit/8c322250b7276f002fc0848bbb5c53bdb8802c00))


- **(es/lexer)** Fix typo in `package` keyword ([#8589](https://github.com/swc-project/swc/issues/8589)) ([8413a6c](https://github.com/swc-project/swc/commit/8413a6c48e94613b9ba264210acab4f7f1787057))


- **(es/proposals)** Support using `using` keyword with functions ([#8574](https://github.com/swc-project/swc/issues/8574)) ([d81596c](https://github.com/swc-project/swc/commit/d81596cd2b03ab7523937ae3206797a9c3b819bf))


Expand Down Expand Up @@ -1476,9 +1479,6 @@

- **(es/minifier)** Don't drop assignments to unused top-level variables ([#7581](https://github.com/swc-project/swc/issues/7581)) ([a685c88](https://github.com/swc-project/swc/commit/a685c88c61248e5bff98fb339a71b40b8fd4e528))


- **(es/parser)** Adjust context while parsing type arguments of TypeScript type queries ([#7582](https://github.com/swc-project/swc/issues/7582)) ([9d5dda1](https://github.com/swc-project/swc/commit/9d5dda12991dac031064b139eb61d2d03dcd8571))

### Features


Expand Down
64 changes: 32 additions & 32 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/binding_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ binding_wasm = [
swc = { optional = true, version = "0.272.8", path = "../swc" }
swc_common = { optional = true, version = "0.33.15", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.111.1", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.228.8", path = "../swc_ecma_transforms" }
swc_ecma_transforms = { optional = true, version = "0.228.9", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.97.1", path = "../swc_ecma_visit" }

# Optional deps for the wasm binding macro
Expand Down
6 changes: 3 additions & 3 deletions crates/dbg-swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ swc_common = { version = "0.33.15", features = [
"tty-emitter",
], path = "../swc_common" }
swc_ecma_ast = { version = "0.111.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.147.3", path = "../swc_ecma_codegen" }
swc_ecma_codegen = { version = "0.147.4", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.191.9", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.142.1", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.136.4", path = "../swc_ecma_transforms_base" }
swc_ecma_parser = { version = "0.142.2", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.136.5", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.97.1", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.14", path = "../swc_error_reporters" }
swc_timer = { version = "0.21.16", path = "../swc_timer" }
4 changes: 2 additions & 2 deletions crates/jsdoc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "jsdoc"
version = "0.111.1"
version = "0.111.2"

[lib]
bench = false
Expand All @@ -26,5 +26,5 @@ anyhow = "1"
dashmap = "5.4.0"

swc_ecma_ast = { version = "0.111.1", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.142.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "0.142.2", path = "../swc_ecma_parser" }
testing = { version = "0.35.16", path = "../testing" }

0 comments on commit ef21736

Please sign in to comment.