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 22, 2023
1 parent d50689e commit 0195f53
Show file tree
Hide file tree
Showing 36 changed files with 255 additions and 252 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,9 @@

- **(es/renamer)** Don't use symbols used by declarations if `eval` exists (#7116) ([6d9763e](https://github.com/swc-project/swc/commit/6d9763e8c0f5cef7689961e7eb11dc7199e8cd08))


- **(es/visit)** Fix handling of `Program` of `AndThen` (#7120) ([d50689e](https://github.com/swc-project/swc/commit/d50689eab0e82a68c84fcacdd8ce5c9009a65100))

## [1.3.42] - 2023-03-22

### Bug Fixes
Expand Down
68 changes: 34 additions & 34 deletions Cargo.lock

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

8 changes: 4 additions & 4 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.19"
version = "0.44.20"

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

[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "0.255.19", path = "../swc" }
swc = { optional = true, version = "0.255.20", path = "../swc" }
swc_common = { optional = true, version = "0.29.37", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.100.2", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.212.14", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.86.2", path = "../swc_ecma_visit" }
swc_ecma_transforms = { optional = true, version = "0.212.15", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.86.3", path = "../swc_ecma_visit" }

# Optional deps for the wasm binding macro
anyhow = { optional = true, version = "1.0.58" }
Expand Down
12 changes: 6 additions & 6 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.22"
version = "0.75.23"

[[bin]]
bench = false
Expand All @@ -26,13 +26,13 @@ swc_common = { version = "0.29.37", features = [
"tty-emitter",
], path = "../swc_common" }
swc_ecma_ast = { version = "0.100.2", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.135.6", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.175.16", path = "../swc_ecma_minifier", features = [
swc_ecma_codegen = { version = "0.135.7", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.175.17", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.130.5", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.122.11", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.86.2", path = "../swc_ecma_visit" }
swc_ecma_parser = { version = "0.130.6", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.122.12", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.86.3", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.13.38", path = "../swc_error_reporters" }
swc_timer = { version = "0.17.40", path = "../swc_timer" }
tempfile = "3.4.0"
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.5"
version = "0.99.6"

[lib]
bench = false
Expand All @@ -21,5 +21,5 @@ swc_common = { version = "0.29.37", path = "../swc_common" }
anyhow = "1"
dashmap = "5.1.0"
swc_ecma_ast = { version = "0.100.2", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.130.5", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "0.130.6", path = "../swc_ecma_parser" }
testing = { version = "0.31.40", path = "../testing" }

0 comments on commit 0195f53

Please sign in to comment.