Skip to content

Commit

Permalink
chore: Publish crates with swc_core v8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Dec 2, 2024
1 parent 6e1c9fd commit 8afbf15
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 33 deletions.
5 changes: 0 additions & 5 deletions .changeset/lemon-seahorses-work.md

This file was deleted.

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



- **(es/minifier)** Support `preserve_annotations` of terser ([#9775](https://github.com/swc-project/swc/issues/9775)) ([6e1c9fd](https://github.com/swc-project/swc/commit/6e1c9fde1f0c95a955a11c44474d6f4a57250c74))


- **(typescript)** Align `isolatedDeclaration` implementation with tsc ([#9715](https://github.com/swc-project/swc/issues/9715)) ([0adad25](https://github.com/swc-project/swc/commit/0adad25da123875c8cec2759004d8264237688f0))


Expand Down Expand Up @@ -1493,12 +1496,4 @@

- **(es/parser)** Optimize lexing of template literals, again ([#9037](https://github.com/swc-project/swc/issues/9037)) ([5bffd0f](https://github.com/swc-project/swc/commit/5bffd0ff9b9548e1585b7e791a3f35ad0a83e1e0))

## [1.5.28] - 2024-06-11

### Bug Fixes



- **(es/minifier)** Fix typescript enum detection ([#9031](https://github.com/swc-project/swc/issues/9031)) ([6669343](https://github.com/swc-project/swc/commit/6669343b4aaaaca5cb4f4ee5753f86aea71974b1))

<!-- generated by git-cliff -->
12 changes: 6 additions & 6 deletions Cargo.lock

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

4 changes: 2 additions & 2 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 = "7.0.0"
version = "8.0.0"

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

[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "7.0.0", path = "../swc" }
swc = { optional = true, version = "8.0.0", 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 = "7.0.0", path = "../swc_ecma_transforms" }
Expand Down
4 changes: 2 additions & 2 deletions 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 = "7.0.0"
version = "8.0.0"

[lib]
bench = false
Expand Down Expand Up @@ -77,7 +77,7 @@ swc_common = { version = "5.0.0", path = "../swc_common", features = [
"sourcemap",
"parking_lot",
] }
swc_compiler_base = { version = "6.0.0", path = "../swc_compiler_base" }
swc_compiler_base = { version = "7.0.0", path = "../swc_compiler_base" }
swc_config = { version = "1.0.0", path = "../swc_config" }
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_cli_impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_cli_impl"
repository = "https://github.com/swc-project/swc.git"
version = "7.0.0"
version = "8.0.0"

[[bin]]
name = "swc"
Expand Down Expand Up @@ -39,7 +39,7 @@ tracing-futures = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
walkdir = { workspace = true }

swc_core = { version = "7.0.0", features = [
swc_core = { version = "8.0.0", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_compiler_base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_compiler_base"
repository = "https://github.com/swc-project/swc.git"
version = "6.0.0"
version = "7.0.0"

[features]
node = ["napi", "napi-derive"]
Expand Down
8 changes: 4 additions & 4 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 = "7.0.0"
version = "8.0.0"
[package.metadata.docs.rs]
features = [
"allocator_node",
Expand Down Expand Up @@ -338,8 +338,8 @@ __visit = ["__ecma", "swc_ecma_visit"]
once_cell = { workspace = true, optional = true }

# swc_* dependencies
binding_macros = { optional = true, version = "7.0.0", path = "../binding_macros" }
swc = { optional = true, version = "7.0.0", path = "../swc" }
binding_macros = { optional = true, version = "8.0.0", path = "../binding_macros" }
swc = { optional = true, version = "8.0.0", 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 Expand Up @@ -373,7 +373,7 @@ swc_ecma_usage_analyzer = { optional = true, version = "6.0.0", path =
swc_ecma_utils = { optional = true, version = "6.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "5.0.0", path = "../swc_ecma_visit" }
swc_malloc = { optional = true, version = "1.0.0", path = "../swc_malloc" }
swc_node_bundler = { optional = true, version = "7.0.0", path = "../swc_node_bundler" }
swc_node_bundler = { optional = true, version = "8.0.0", path = "../swc_node_bundler" }
swc_nodejs_common = { optional = true, version = "1.0.0", path = "../swc_nodejs_common" }
swc_plugin = { optional = true, version = "1.0.0", path = "../swc_plugin" }
swc_plugin_macro = { optional = true, version = "1.0.0", path = "../swc_plugin_macro" }
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 = "7.0.0", path = "../swc" }
swc = { version = "8.0.0", path = "../swc" }
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "7.0.0", path = "../swc_ecma_transforms/" }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_node_bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_node_bundler"
repository = "https://github.com/swc-project/swc.git"
version = "7.0.0"
version = "8.0.0"

[lib]
bench = false
Expand All @@ -29,7 +29,7 @@ serde_json = { workspace = true }
tracing = { workspace = true }

string_enum = { version = "1.0.0", path = "../string_enum" }
swc = { version = "7.0.0", path = "../swc" }
swc = { version = "8.0.0", 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 8afbf15

Please sign in to comment.