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 Mar 24, 2023
1 parent 915f747 commit 6635d54
Show file tree
Hide file tree
Showing 35 changed files with 224 additions and 221 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -35,6 +35,9 @@
- **(es/codegen)** Extract code from generic functions to reduce compile time (#7127) ([08fa94f](https://github.com/swc-project/swc/commit/08fa94fc737c2c3522227c1275e4a1d93c2a8611))


- **(es/parser)** Remove `EnumKind` to reduce compile time (#7137) ([915f747](https://github.com/swc-project/swc/commit/915f747cb7ba972e47e249b5a5ba9573dd68f607))


- **(macros)** Reduce compile time (#7132) ([2154a3f](https://github.com/swc-project/swc/commit/2154a3f117d9ea7cc2f12856d6e7f2b33a255d26))

## [1.3.42] - 2023-03-22
Expand Down
66 changes: 33 additions & 33 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
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.44.26"
version = "0.44.27"

[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.255.26", path = "../swc" }
swc = { optional = true, version = "0.255.27", path = "../swc" }
swc_common = { optional = true, version = "0.29.39", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.100.5", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.212.20", path = "../swc_ecma_transforms" }
swc_ecma_transforms = { optional = true, version = "0.212.21", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.86.6", path = "../swc_ecma_visit" }

# Optional deps for the wasm binding macro
Expand Down
10 changes: 5 additions & 5 deletions crates/dbg-swc/Cargo.toml
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.75.28"
version = "0.75.29"

[[bin]]
bench = false
Expand All @@ -26,12 +26,12 @@ swc_common = { version = "0.29.39", features = [
"tty-emitter",
], path = "../swc_common" }
swc_ecma_ast = { version = "0.100.5", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.135.10", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.175.22", path = "../swc_ecma_minifier", features = [
swc_ecma_codegen = { version = "0.135.11", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.175.23", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.130.9", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.122.15", path = "../swc_ecma_transforms_base" }
swc_ecma_parser = { version = "0.130.10", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.122.16", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.86.6", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.13.40", path = "../swc_error_reporters" }
swc_timer = { version = "0.17.42", path = "../swc_timer" }
Expand Down
4 changes: 2 additions & 2 deletions crates/jsdoc/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "jsdoc"
version = "0.99.9"
version = "0.99.10"

[lib]
bench = false
Expand All @@ -21,5 +21,5 @@ swc_common = { version = "0.29.39", path = "../swc_common" }
anyhow = "1"
dashmap = "5.1.0"
swc_ecma_ast = { version = "0.100.5", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.130.9", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "0.130.10", path = "../swc_ecma_parser" }
testing = { version = "0.31.42", path = "../testing" }

0 comments on commit 6635d54

Please sign in to comment.