Skip to content

Commit

Permalink
chore: Publish crates with swc_core v9.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Dec 9, 2024
1 parent e04c7b3 commit 1ef37a0
Show file tree
Hide file tree
Showing 14 changed files with 43 additions and 45 deletions.
5 changes: 0 additions & 5 deletions .changeset/heavy-apes-collect.md

This file was deleted.

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

- **(es/resolver)** Fix wrong syntax context of vars with the same names as catch params ([#9786](https://github.com/swc-project/swc/issues/9786)) ([5a44c6b](https://github.com/swc-project/swc/commit/5a44c6b42471aeceb3771b1cf4ebb310d03a0154))

### Features



- **(es/transforms)** Add `module.outFileExtension` ([#9784](https://github.com/swc-project/swc/issues/9784)) ([e04c7b3](https://github.com/swc-project/swc/commit/e04c7b31fcc776ec990ea33f988e2ed38c78962c))

## [1.10.0] - 2024-12-04

### Bug Fixes
Expand Down Expand Up @@ -1487,9 +1493,6 @@



- **(ci)** Make publish action upload cli artifacts ([#9040](https://github.com/swc-project/swc/issues/9040)) ([3337bb2](https://github.com/swc-project/swc/commit/3337bb26f9b00352c3f03c625f1429ee15ebc070))


- **(xtask)** Fix `nightly` action ([#9042](https://github.com/swc-project/swc/issues/9042)) ([733dcc6](https://github.com/swc-project/swc/commit/733dcc6b83e77a2571a3fee307a73fc0c17bd44c))

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

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

6 changes: 3 additions & 3 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 = "8.0.0"
version = "9.0.0"

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

[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "8.0.0", path = "../swc" }
swc = { optional = true, version = "9.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" }
swc_ecma_transforms = { optional = true, version = "8.0.0", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "5.0.0", path = "../swc_ecma_visit" }

# Optional deps for the wasm binding macro
Expand Down
6 changes: 3 additions & 3 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 = "8.0.0"
version = "9.0.0"

[lib]
bench = false
Expand Down Expand Up @@ -90,8 +90,8 @@ swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader", features = [
] }
swc_ecma_minifier = { version = "6.0.1", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "7.0.0", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "7.0.0", path = "../swc_ecma_transforms", features = [
swc_ecma_preset_env = { version = "8.0.0", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "8.0.0", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
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 = "8.0.0"
version = "9.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 = "8.0.2", features = [
swc_core = { version = "9.0.0", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",
Expand Down
12 changes: 6 additions & 6 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 = "8.0.2"
version = "9.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 = "8.0.0", path = "../binding_macros" }
swc = { optional = true, version = "8.0.0", path = "../swc" }
binding_macros = { optional = true, version = "9.0.0", path = "../binding_macros" }
swc = { optional = true, version = "9.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 All @@ -359,11 +359,11 @@ swc_ecma_lints = { optional = true, version = "6.0.0", path =
swc_ecma_loader = { optional = true, version = "5.0.0", path = "../swc_ecma_loader" }
swc_ecma_minifier = { optional = true, version = "6.0.1", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "6.0.0", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { optional = true, version = "7.0.0", path = "../swc_ecma_preset_env" }
swc_ecma_preset_env = { optional = true, version = "8.0.0", path = "../swc_ecma_preset_env" }
swc_ecma_quote_macros = { optional = true, version = "6.0.0", path = "../swc_ecma_quote_macros" }
swc_ecma_transforms_base = { optional = true, version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { optional = true, version = "7.0.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { optional = true, version = "6.0.0", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_module = { optional = true, version = "7.0.0", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_optimization = { optional = true, version = "6.0.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_proposal = { optional = true, version = "6.0.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { optional = true, version = "6.0.0", path = "../swc_ecma_transforms_react" }
Expand All @@ -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 = "8.0.0", path = "../swc_node_bundler" }
swc_node_bundler = { optional = true, version = "9.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
4 changes: 2 additions & 2 deletions crates/swc_ecma_preset_env/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_ecma_preset_env"
repository = { workspace = true }
version = "7.0.0"
version = "8.0.0"

[lib]
bench = false
Expand All @@ -32,7 +32,7 @@ string_enum = { version = "1.0.0", path = "../string_enum" }
swc_atoms = { version = "3.0.0", path = "../swc_atoms" }
swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_transforms = { version = "7.0.0", path = "../swc_ecma_transforms", features = [
swc_ecma_transforms = { version = "8.0.0", path = "../swc_ecma_transforms", features = [
"compat",
"proposal",
] }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_transforms/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_ecma_transforms"
repository = "https://github.com/swc-project/swc.git"
version = "7.0.0"
version = "8.0.0"

[package.metadata.docs.rs]
all-features = true
Expand Down Expand Up @@ -37,7 +37,7 @@ swc_common = { version = "5.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_transforms_base = { version = "6.0.2", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "7.0.0", path = "../swc_ecma_transforms_compat", optional = true }
swc_ecma_transforms_module = { version = "6.0.0", path = "../swc_ecma_transforms_module", optional = true }
swc_ecma_transforms_module = { version = "7.0.0", path = "../swc_ecma_transforms_module", optional = true }
swc_ecma_transforms_optimization = { version = "6.0.0", path = "../swc_ecma_transforms_optimization", optional = true }
swc_ecma_transforms_proposal = { version = "6.0.0", path = "../swc_ecma_transforms_proposal", optional = true }
swc_ecma_transforms_react = { version = "6.0.0", path = "../swc_ecma_transforms_react", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_module/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_ecma_transforms_module"
repository = "https://github.com/swc-project/swc.git"
version = "6.0.0"
version = "7.0.0"

[lib]
bench = false
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_optimization/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ swc_fast_graph = { version = "6.0.0", path = "../swc_fast_graph" }

[dev-dependencies]
swc_ecma_transforms_compat = { version = "7.0.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { version = "6.0.0", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_module = { version = "7.0.0", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_proposal = { version = "6.0.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "6.0.0", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_testing = { version = "6.0.0", path = "../swc_ecma_transforms_testing" }
Expand Down
6 changes: 3 additions & 3 deletions crates/swc_ecmascript/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_ecmascript"
repository = "https://github.com/swc-project/swc.git"
version = "7.0.0"
version = "8.0.0"

[package.metadata.docs.rs]
all-features = true
Expand Down Expand Up @@ -42,9 +42,9 @@ swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen", optional = true }
swc_ecma_minifier = { version = "6.0.1", path = "../swc_ecma_minifier", optional = true }
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser", optional = true, default-features = false }
swc_ecma_preset_env = { version = "7.0.0", path = "../swc_ecma_preset_env", optional = true }
swc_ecma_preset_env = { version = "8.0.0", path = "../swc_ecma_preset_env", optional = true }
swc_ecma_quote = { version = "6.0.0", path = "../swc_ecma_quote", optional = true }
swc_ecma_transforms = { version = "7.0.0", path = "../swc_ecma_transforms", optional = true }
swc_ecma_transforms = { version = "8.0.0", path = "../swc_ecma_transforms", optional = true }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils", optional = true }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit", optional = true }

Expand Down
4 changes: 2 additions & 2 deletions crates/swc_estree_compat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ codspeed-criterion-compat = { workspace = true }
criterion = { workspace = true }
pretty_assertions = { workspace = true }

swc = { version = "8.0.0", path = "../swc" }
swc = { version = "9.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/" }
swc_ecma_transforms = { version = "8.0.0", path = "../swc_ecma_transforms/" }
testing = { version = "5.0.0", path = "../testing" }
walkdir = { workspace = true }

Expand Down
6 changes: 3 additions & 3 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 = "8.0.0"
version = "9.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 = "8.0.0", path = "../swc" }
swc = { version = "9.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 All @@ -41,7 +41,7 @@ swc_ecma_ast = { version = "5.0.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "5.0.0", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "5.0.0", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "6.0.0", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "7.0.0", path = "../swc_ecma_transforms" }
swc_ecma_transforms = { version = "8.0.0", path = "../swc_ecma_transforms" }
swc_ecma_utils = { version = "6.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "5.0.0", path = "../swc_ecma_visit" }
swc_malloc = { version = "1.0.0", path = "../swc_malloc" }
Expand Down

0 comments on commit 1ef37a0

Please sign in to comment.