Skip to content

Commit

Permalink
chore: Publish crates with swc_core v6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Nov 16, 2024
1 parent 6ad0735 commit b11d272
Show file tree
Hide file tree
Showing 79 changed files with 134 additions and 140 deletions.
6 changes: 0 additions & 6 deletions .changeset/smart-cherries-sleep.md

This file was deleted.

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



- **(bindings/node)** Format `binding.js` ([#9738](https://github.com/swc-project/swc/issues/9738)) ([9f8c14f](https://github.com/swc-project/swc/commit/9f8c14f5f81ca66609fe2fbfdac4c970240702e4))


- **(deps)** Update cargo (patch) ([#9724](https://github.com/swc-project/swc/issues/9724)) ([da37439](https://github.com/swc-project/swc/commit/da37439d6b6aae31e2b21690476d93f12dc87bd3))

### Performance
Expand All @@ -32,6 +35,9 @@



- **(es/compat)** Use special span instead of passing `static_blocks_mark` ([#9725](https://github.com/swc-project/swc/issues/9725)) ([6ad0735](https://github.com/swc-project/swc/commit/6ad0735033b405c04e53c1e3c7ec56db4b8fcf93))


- Delay Wasm-plugin breaking changes ([#9735](https://github.com/swc-project/swc/issues/9735)) ([92faf5b](https://github.com/swc-project/swc/commit/92faf5b15df2ef5954f1a07c7376c04558efe181))

## [1.9.2] - 2024-11-11
Expand Down Expand Up @@ -1447,12 +1453,6 @@

## [1.5.26] - 2024-06-10

### Bug Fixes



- **(es/es2015)** Remove needless `unreachable!` ([#9021](https://github.com/swc-project/swc/issues/9021)) ([555e71c](https://github.com/swc-project/swc/commit/555e71cfd5dddfec35c8a694b50d6a08ab89ae3c))

### Features


Expand Down
24 changes: 12 additions & 12 deletions Cargo.lock

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

8 changes: 4 additions & 4 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 = "5.0.0"
version = "6.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 = "5.0.2", path = "../swc" }
swc_common = { optional = true, version = "4.0.0", path = "../swc_common" }
swc = { optional = true, version = "6.0.0", path = "../swc" }
swc_common = { optional = true, version = "4.0.1", 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" }
swc_ecma_transforms = { optional = true, version = "6.0.0", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "4.0.0", path = "../swc_ecma_visit" }

# Optional deps for the wasm binding macro
Expand Down
2 changes: 1 addition & 1 deletion crates/dbg-swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ clap = { version = "3", features = ["derive"] }
tracing-subscriber = { workspace = true, features = ["fmt", "env-filter"] }

swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "4.0.0", features = [
swc_common = { version = "4.0.1", features = [
"concurrent",
"tty-emitter",
], path = "../swc_common" }
Expand Down
2 changes: 1 addition & 1 deletion crates/jsdoc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ nom = { workspace = true }
serde = { workspace = true, features = ["derive"], optional = true }

swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "4.0.0", path = "../swc_common" }
swc_common = { version = "4.0.1", path = "../swc_common" }

[dev-dependencies]
anyhow = { workspace = true }
Expand Down
10 changes: 5 additions & 5 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 = "5.0.2"
version = "6.0.0"

[lib]
bench = false
Expand Down Expand Up @@ -72,7 +72,7 @@ url = { workspace = true }

swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_cached = { version = "1.0.0", path = "../swc_cached" }
swc_common = { version = "4.0.0", path = "../swc_common", features = [
swc_common = { version = "4.0.1", path = "../swc_common", features = [
"ahash",
"sourcemap",
"parking_lot",
Expand All @@ -90,8 +90,8 @@ swc_ecma_loader = { version = "4.0.0", path = "../swc_ecma_loader", features = [
] }
swc_ecma_minifier = { version = "5.0.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "5.0.0", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "5.0.0", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "5.0.0", path = "../swc_ecma_transforms", features = [
swc_ecma_preset_env = { version = "6.0.0", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "6.0.0", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
Expand All @@ -100,7 +100,7 @@ swc_ecma_transforms = { version = "5.0.0", path = "../swc_ecma_transforms", feat
"typescript",
] }
swc_ecma_transforms_base = { version = "5.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "5.0.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_compat = { version = "6.0.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "5.0.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "5.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "4.0.0", path = "../swc_ecma_visit" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ relative-path = { workspace = true }
tracing = { workspace = true }

swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "4.0.0", path = "../swc_common" }
swc_common = { version = "4.0.1", path = "../swc_common" }
swc_ecma_ast = { version = "4.0.1", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "4.0.2", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "4.0.0", path = "../swc_ecma_loader" }
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 = "5.0.0"
version = "6.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 = "5.0.4", features = [
swc_core = { version = "6.0.0", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_common/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_common"
repository = "https://github.com/swc-project/swc.git"
version = "4.0.0"
version = "4.0.1"

[package.metadata.docs.rs]
all-features = true
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 @@ -24,7 +24,7 @@ sourcemap = { workspace = true }
swc_allocator = { version = "1.0.0", path = "../swc_allocator", default-features = false }

swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "4.0.0", path = "../swc_common", features = [
swc_common = { version = "4.0.1", path = "../swc_common", features = [
"sourcemap",
] }
swc_config = { version = "1.0.0", path = "../swc_config" }
Expand Down
14 changes: 7 additions & 7 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.4"
version = "6.0.0"
[package.metadata.docs.rs]
features = [
"allocator_node",
Expand Down Expand Up @@ -338,12 +338,12 @@ __visit = ["__ecma", "swc_ecma_visit"]
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.2", path = "../swc" }
binding_macros = { optional = true, version = "6.0.0", path = "../binding_macros" }
swc = { optional = true, version = "6.0.0", 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" }
swc_common = { optional = true, version = "4.0.0", path = "../swc_common" }
swc_common = { optional = true, version = "4.0.1", path = "../swc_common" }
swc_css_ast = { optional = true, version = "4.0.1", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "4.0.0", path = "../swc_css_codegen" }
swc_css_compat = { optional = true, version = "4.0.0", path = "../swc_css_compat" }
Expand All @@ -359,10 +359,10 @@ swc_ecma_lints = { optional = true, version = "5.0.0", path =
swc_ecma_loader = { optional = true, version = "4.0.0", path = "../swc_ecma_loader" }
swc_ecma_minifier = { optional = true, version = "5.0.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "5.0.0", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { optional = true, version = "5.0.0", path = "../swc_ecma_preset_env" }
swc_ecma_preset_env = { optional = true, version = "6.0.0", path = "../swc_ecma_preset_env" }
swc_ecma_quote_macros = { optional = true, version = "5.0.0", path = "../swc_ecma_quote_macros" }
swc_ecma_transforms_base = { optional = true, version = "5.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { optional = true, version = "5.0.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_compat = { optional = true, version = "6.0.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { optional = true, version = "5.0.0", path = "../swc_ecma_transforms_module" }
swc_ecma_transforms_optimization = { optional = true, version = "5.0.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_proposal = { optional = true, version = "5.0.0", path = "../swc_ecma_transforms_proposal" }
Expand All @@ -373,7 +373,7 @@ swc_ecma_usage_analyzer = { optional = true, version = "5.0.0", path =
swc_ecma_utils = { optional = true, version = "5.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "4.0.0", path = "../swc_ecma_visit" }
swc_malloc = { optional = true, version = "1.0.0", path = "../swc_malloc" }
swc_node_bundler = { optional = true, version = "5.0.0", path = "../swc_node_bundler" }
swc_node_bundler = { optional = true, version = "6.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_css_ast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ serde = { workspace = true, features = ["derive"], optional = true }
string_enum = { version = "1.0.0", path = "../string_enum/" }

swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "4.0.0", path = "../swc_common" }
swc_common = { version = "4.0.1", path = "../swc_common" }

rkyv = { workspace = true, features = ["validation"], optional = true }
4 changes: 2 additions & 2 deletions crates/swc_css_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ rustc-hash = { workspace = true }
serde = { workspace = true }

swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "4.0.0", path = "../swc_common" }
swc_common = { version = "4.0.1", path = "../swc_common" }
swc_css_ast = { version = "4.0.1", path = "../swc_css_ast" }
swc_css_codegen_macros = { version = "1.0.0", path = "../swc_css_codegen_macros" }
swc_css_utils = { version = "4.0.0", path = "../swc_css_utils" }

[dev-dependencies]
swc_common = { version = "4.0.0", path = "../swc_common", features = [
swc_common = { version = "4.0.1", path = "../swc_common", features = [
"sourcemap",
] }
swc_css_parser = { version = "4.0.0", path = "../swc_css_parser" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_css_compat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }

swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "4.0.0", path = "../swc_common" }
swc_common = { version = "4.0.1", path = "../swc_common" }
swc_css_ast = { version = "4.0.1", path = "../swc_css_ast" }
swc_css_utils = { version = "4.0.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "4.0.0", path = "../swc_css_visit" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_css_lints/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ thiserror = { workspace = true }

swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_cached = { version = "1.0.0", path = "../swc_cached" }
swc_common = { version = "4.0.0", path = "../swc_common" }
swc_common = { version = "4.0.1", path = "../swc_common" }
swc_css_ast = { version = "4.0.1", path = "../swc_css_ast" }
swc_css_visit = { version = "4.0.0", path = "../swc_css_visit" }

Expand Down
2 changes: 1 addition & 1 deletion crates/swc_css_minifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ bench = false
serde = { workspace = true }

swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "4.0.0", path = "../swc_common" }
swc_common = { version = "4.0.1", path = "../swc_common" }
swc_css_ast = { version = "4.0.1", path = "../swc_css_ast" }
swc_css_utils = { version = "4.0.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "4.0.0", path = "../swc_css_visit" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_css_modules/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rustc-hash = { workspace = true }
serde = { workspace = true, features = ["derive"] }

swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "4.0.0", path = "../swc_common" }
swc_common = { version = "4.0.1", path = "../swc_common" }
swc_css_ast = { version = "4.0.1", path = "../swc_css_ast" }
swc_css_codegen = { version = "4.0.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "4.0.0", path = "../swc_css_parser" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_css_parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ lexical = { workspace = true }
serde = { workspace = true }

swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "4.0.0", path = "../swc_common" }
swc_common = { version = "4.0.1", path = "../swc_common" }
swc_css_ast = { version = "4.0.1", path = "../swc_css_ast" }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_css_prefixer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ serde_json = { workspace = true }

preset_env_base = { version = "1.0.0", path = "../preset_env_base" }
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "4.0.0", path = "../swc_common" }
swc_common = { version = "4.0.1", path = "../swc_common" }
swc_css_ast = { version = "4.0.1", path = "../swc_css_ast" }
swc_css_utils = { version = "4.0.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "4.0.0", path = "../swc_css_visit" }
Expand Down
Loading

0 comments on commit b11d272

Please sign in to comment.