Skip to content

Commit

Permalink
chore: Publish crates with swc_core v9.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Dec 18, 2024
1 parent c81be2e commit 3397257
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 15 deletions.
6 changes: 0 additions & 6 deletions .changeset/new-apricots-exercise.md

This file was deleted.

3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@



- **(es)** Don't panic when wasm bytecheck faild ([#9803](/~https://github.com/swc-project/swc/issues/9803)) ([c81be2e](/~https://github.com/swc-project/swc/commit/c81be2ee2818106387d9c9f5d7ee553c6678e18f))


- **(es/parser)** Do not parse empty stmt after using decl ([#9798](/~https://github.com/swc-project/swc/issues/9798)) ([c2696db](/~https://github.com/swc-project/swc/commit/c2696db528fc98187c5c5f7413bd9daac7d6c1b6))

## [1.10.1] - 2024-12-09
Expand Down
4 changes: 2 additions & 2 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 @@ -33,7 +33,7 @@ binding_wasm = [

[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "9.0.0", path = "../swc" }
swc = { optional = true, version = "9.0.1", path = "../swc" }
swc_common = { optional = true, version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "8.0.0", path = "../swc_ecma_transforms" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc"
repository = "/~https://github.com/swc-project/swc.git"
version = "9.0.0"
version = "9.0.1"

[lib]
bench = false
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_cli_impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ tracing-futures = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
walkdir = { workspace = true }

swc_core = { version = "9.0.1", features = [
swc_core = { version = "9.0.2", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "/~https://github.com/swc-project/swc.git"
version = "9.0.1"
version = "9.0.2"
[package.metadata.docs.rs]
features = [
"allocator_node",
Expand Down Expand Up @@ -339,7 +339,7 @@ once_cell = { workspace = true, optional = true }

# swc_* dependencies
binding_macros = { optional = true, version = "9.0.0", path = "../binding_macros" }
swc = { optional = true, version = "9.0.0", path = "../swc" }
swc = { optional = true, version = "9.0.1", path = "../swc" }
swc_atoms = { optional = true, version = "3.0.0", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "6.0.0", path = "../swc_bundler" }
swc_cached = { optional = true, version = "1.0.0", path = "../swc_cached" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_estree_compat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ codspeed-criterion-compat = { workspace = true }
criterion = { workspace = true }
pretty_assertions = { workspace = true }

swc = { version = "9.0.0", path = "../swc" }
swc = { version = "9.0.1", path = "../swc" }
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "6.0.1", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "8.0.0", path = "../swc_ecma_transforms/" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_node_bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ serde_json = { workspace = true }
tracing = { workspace = true }

string_enum = { version = "1.0.0", path = "../string_enum" }
swc = { version = "9.0.0", path = "../swc" }
swc = { version = "9.0.1", path = "../swc" }
swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
swc_bundler = { version = "6.0.0", path = "../swc_bundler", features = [
"concurrent",
Expand Down

0 comments on commit 3397257

Please sign in to comment.