Skip to content

Commit

Permalink
chore: Publish crates with swc_core v5.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Nov 6, 2024
1 parent aff9de5 commit 1606d08
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 18 deletions.
6 changes: 0 additions & 6 deletions .changeset/dull-donuts-learn.md

This file was deleted.

11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# Changelog
## [unreleased]

### Bug Fixes



- **(es)** Fix typo in feature name ([#9721](https://github.com/swc-project/swc/issues/9721)) ([aff9de5](https://github.com/swc-project/swc/commit/aff9de5ea37d5d34d587b96b8044d08644936524))

## [1.9.1] - 2024-11-06

### Bug Fixes
Expand Down Expand Up @@ -1428,9 +1436,6 @@



- **(es/minifier)** Preserve unused special properties ([#9005](https://github.com/swc-project/swc/issues/9005)) ([e764ff6](https://github.com/swc-project/swc/commit/e764ff6f64d4e528a2af3e3ad7859ab3f8a2fe48))


- **(es/minifier)** Fix comparison of `-0.0` ([#9012](https://github.com/swc-project/swc/issues/9012)) ([8a29577](https://github.com/swc-project/swc/commit/8a29577cc5bd3842d3bccfdbbffa45e4c9944d7f))


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 = "5.0.0", path = "../swc" }
swc = { optional = true, version = "5.0.1", path = "../swc" }
swc_common = { optional = true, version = "4.0.0", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "4.0.1", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "5.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 = "5.0.0"
version = "5.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 = "5.0.1", features = [
swc_core = { version = "5.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 = "5.0.1"
version = "5.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 = "5.0.0", path = "../binding_macros" }
swc = { optional = true, version = "5.0.0", path = "../swc" }
swc = { optional = true, version = "5.0.1", path = "../swc" }
swc_atoms = { optional = true, version = "2.0.0", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "5.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 = "5.0.0", path = "../swc" }
swc = { version = "5.0.1", path = "../swc" }
swc_ecma_ast = { version = "4.0.1", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "5.0.0", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "5.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 = "5.0.0", path = "../swc" }
swc = { version = "5.0.1", path = "../swc" }
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_bundler = { version = "5.0.0", path = "../swc_bundler", features = [
"concurrent",
Expand Down

0 comments on commit 1606d08

Please sign in to comment.