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 9, 2023
1 parent a9fe1d2 commit 03488a3
Show file tree
Hide file tree
Showing 38 changed files with 307 additions and 295 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,28 @@

- **(common)** Add an API to create a `SourceFile` without allocation (#7029) ([81495f5](https://github.com/swc-project/swc/commit/81495f5f21d56df7a187847337c9fdd2ff8ee73b))

### Miscellaneous Tasks



- **(ci)** Fix bot ([691a8c1](https://github.com/swc-project/swc/commit/691a8c1a5490cc6fa05ad2bb59cfc7c4d370056f))

### Performance



- **(atoms)** Update `string-cache` for per-bucket mutex (#6980) ([9841f0b](https://github.com/swc-project/swc/commit/9841f0b5d14736d780c9864eb9bf7609f9ff2840))


- **(es/ast)** Shrink size of `Expr` (#7041) ([a9fe1d2](https://github.com/swc-project/swc/commit/a9fe1d2d2228ba89fccb2a5d91f5ac4008f09d01))


- **(es/parser)** Use Cow for `_` in numeric literals (#7031) ([30546a2](https://github.com/swc-project/swc/commit/30546a28f21eb90bbbaef33ce4bc0448cd062a72))


- **(es/parser)** Use `SmartString` as the buffer (#7033) ([f378a14](https://github.com/swc-project/swc/commit/f378a14888b5a6457ade3991e2754f235d4e3d85))


- **(es/utils)** Introduce `NodeIgnoringSpan` (#7030) ([8bfef35](https://github.com/swc-project/swc/commit/8bfef35c1be5790b32fea253f28961271fe7f619))

### Testing
Expand Down
72 changes: 36 additions & 36 deletions Cargo.lock

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

10 changes: 5 additions & 5 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.40.0"
version = "0.41.0"

[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.251.0", path = "../swc" }
swc = { optional = true, version = "0.252.0", path = "../swc" }
swc_common = { optional = true, version = "0.29.35", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.98.2", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.209.0", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.84.2", path = "../swc_ecma_visit" }
swc_ecma_ast = { optional = true, version = "0.99.0", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.210.0", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.85.0", path = "../swc_ecma_visit" }

# Optional deps for the wasm binding macro
anyhow = { optional = true, version = "1.0.58" }
Expand Down

0 comments on commit 03488a3

Please sign in to comment.