Skip to content

Commit

Permalink
chore: Bump crates
Browse files Browse the repository at this point in the history
  • Loading branch information
swc-bot committed Feb 20, 2024
1 parent 6fe6810 commit 463cd3b
Show file tree
Hide file tree
Showing 25 changed files with 115 additions and 110 deletions.
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/compat)** Split declaration and init in `block-scoping` pass ([#8648](https://github.com/swc-project/swc/issues/8648)) ([6fe6810](https://github.com/swc-project/swc/commit/6fe6810c492ca20ad73d1536e328ddb804533537))

## [1.4.2] - 2024-02-19

### Bug Fixes
Expand Down Expand Up @@ -1438,9 +1446,6 @@



- **(es)** Add a validation for a wrong config ([#7704](https://github.com/swc-project/swc/issues/7704)) ([900701f](https://github.com/swc-project/swc/commit/900701fbf24912dce219f97baa8c11c533966896))


- **(swc_core)** Expose `visit/serde` as serde feature ([#7722](https://github.com/swc-project/swc/issues/7722)) ([2bc9637](https://github.com/swc-project/swc/commit/2bc96373b736ce4d81336c1c0340a1d4f7d7f4b0))

### Refactor
Expand Down
46 changes: 23 additions & 23 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 = "0.64.7"
version = "0.64.8"

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

[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "0.273.7", path = "../swc" }
swc = { optional = true, version = "0.273.8", path = "../swc" }
swc_common = { optional = true, version = "0.33.17", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.229.6", path = "../swc_ecma_transforms" }
swc_ecma_transforms = { optional = true, version = "0.229.7", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.98.2", path = "../swc_ecma_visit" }

# Optional deps for the wasm binding macro
Expand Down
4 changes: 2 additions & 2 deletions crates/dbg-swc/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 = "dbg-swc"
repository = "https://github.com/kdy1/dbg-swc.git"
version = "0.91.9"
version = "0.91.10"

[[bin]]
bench = false
Expand All @@ -32,7 +32,7 @@ swc_common = { version = "0.33.17", features = [
], path = "../swc_common" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.192.6", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "0.192.7", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" }
Expand Down
14 changes: 7 additions & 7 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 = "0.273.7"
version = "0.273.8"

[lib]
bench = false
Expand Down Expand Up @@ -73,7 +73,7 @@ swc_common = { version = "0.33.17", path = "../swc_common", features = [
"sourcemap",
"parking_lot",
] }
swc_compiler_base = { version = "0.7.6", path = "../swc_compiler_base" }
swc_compiler_base = { version = "0.7.7", path = "../swc_compiler_base" }
swc_config = { version = "0.1.11", path = "../swc_config" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" }
Expand All @@ -84,10 +84,10 @@ swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader", features =
"node",
"tsc",
] }
swc_ecma_minifier = { version = "0.192.6", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "0.192.7", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.206.6", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.229.6", path = "../swc_ecma_transforms", features = [
swc_ecma_preset_env = { version = "0.206.7", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.229.7", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
Expand All @@ -96,8 +96,8 @@ swc_ecma_transforms = { version = "0.229.6", path = "../swc_ecma_transforms", fe
"typescript",
] }
swc_ecma_transforms_base = { version = "0.137.6", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.163.6", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.198.6", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_compat = { version = "0.163.7", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.198.7", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.127.5", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.16", path = "../swc_error_reporters" }
Expand Down
12 changes: 6 additions & 6 deletions crates/swc_bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ include = ["Cargo.toml", "build.rs", "src/**/*.rs", "src/**/*.js"]
license = "Apache-2.0"
name = "swc_bundler"
repository = "https://github.com/swc-project/swc.git"
version = "0.225.6"
version = "0.225.7"

[package.metadata.docs.rs]
all-features = true
Expand Down Expand Up @@ -44,7 +44,7 @@ swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_co
swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.137.6", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.198.6", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.198.7", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.127.5", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.21.17", path = "../swc_fast_graph/" }
Expand All @@ -63,11 +63,11 @@ swc_ecma_loader = { version = "0.45.19", path = "../swc_ecma_loader", features =
"node",
"cache",
] }
swc_ecma_minifier = { version = "0.192.6", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "0.192.7", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_transforms_proposal = { version = "0.171.6", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.183.6", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.188.6", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_proposal = { version = "0.171.7", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.183.7", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.188.7", path = "../swc_ecma_transforms_typescript" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.18", path = "../testing" }
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 = "0.8.10"
version = "0.8.11"

[[bin]]
name = "swc"
Expand Down Expand Up @@ -40,7 +40,7 @@ tracing-futures = "0.2.5"
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
walkdir = "2"

swc_core = { version = "0.90.10", features = [
swc_core = { version = "0.90.11", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",
Expand Down
4 changes: 2 additions & 2 deletions 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 = "0.7.6"
version = "0.7.7"

[features]
node = ["napi", "napi-derive"]
Expand All @@ -27,7 +27,7 @@ swc_common = { version = "0.33.17", path = "../swc_common", features = [
swc_config = { version = "0.1.11", path = "../swc_config" }
swc_ecma_ast = { version = "0.112.2", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.148.3", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.192.6", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "0.192.7", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.143.3", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "0.98.2", path = "../swc_ecma_visit" }
swc_timer = { version = "0.21.18", path = "../swc_timer" }
Expand Down

0 comments on commit 463cd3b

Please sign in to comment.