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 Jan 21, 2024
1 parent 71fb5c1 commit 9c23f1c
Show file tree
Hide file tree
Showing 24 changed files with 108 additions and 108 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@

- **(es/ast)** Fix definition of `SetterProp` ([#8314](https://github.com/swc-project/swc/issues/8314)) ([bc38ac9](https://github.com/swc-project/swc/commit/bc38ac906c427ba060f3da47c64726fe417162ed))


- **(es/module)** Fix resolving of dependencies ([#8533](https://github.com/swc-project/swc/issues/8533)) ([71fb5c1](https://github.com/swc-project/swc/commit/71fb5c12a75bec27cc775069f83b576019d261f2))

### Features


Expand Down Expand Up @@ -1497,9 +1500,6 @@



- **(es/codegen)** Emit type arguments of jsx element names ([#7522](https://github.com/swc-project/swc/issues/7522)) ([a0da02d](https://github.com/swc-project/swc/commit/a0da02d0ff641863dafc1a7d573419478c3b16dc))


- **(es/codegen)** Fix regression of source maps ([#7523](https://github.com/swc-project/swc/issues/7523)) ([f27838d](https://github.com/swc-project/swc/commit/f27838dedcac792ac30380f45ef89b329221de59))


Expand Down
44 changes: 22 additions & 22 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.62.0"
version = "0.63.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 = "0.271.0", path = "../swc" }
swc = { optional = true, version = "0.272.0", path = "../swc" }
swc_common = { optional = true, version = "0.33.14", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.111.0", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.228.0", path = "../swc_ecma_transforms" }
swc_ecma_transforms = { optional = true, version = "0.229.0", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.97.0", 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.90.35"
version = "0.91.0"

[[bin]]
bench = false
Expand All @@ -32,7 +32,7 @@ swc_common = { version = "0.33.14", features = [
], path = "../swc_common" }
swc_ecma_ast = { version = "0.111.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.147.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.191.0", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "0.192.0", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.142.0", path = "../swc_ecma_parser" }
Expand Down
16 changes: 8 additions & 8 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.271.0"
version = "0.272.0"

[lib]
bench = false
Expand Down Expand Up @@ -73,21 +73,21 @@ swc_common = { version = "0.33.14", path = "../swc_common", features = [
"sourcemap",
"parking_lot",
] }
swc_compiler_base = { version = "0.5.0", path = "../swc_compiler_base" }
swc_compiler_base = { version = "0.6.0", path = "../swc_compiler_base" }
swc_config = { version = "0.1.9", path = "../swc_config" }
swc_ecma_ast = { version = "0.111.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.147.0", path = "../swc_ecma_codegen" }
swc_ecma_ext_transforms = { version = "0.112.0", path = "../swc_ecma_ext_transforms" }
swc_ecma_lints = { version = "0.91.0", path = "../swc_ecma_lints" }
swc_ecma_loader = { version = "0.45.14", path = "../swc_ecma_loader", features = [
swc_ecma_loader = { version = "0.46.0", path = "../swc_ecma_loader", features = [
"cache",
"node",
"tsc",
] }
swc_ecma_minifier = { version = "0.191.0", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "0.192.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.142.0", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.205.0", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.228.0", path = "../swc_ecma_transforms", features = [
swc_ecma_preset_env = { version = "0.206.0", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.229.0", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
Expand All @@ -97,13 +97,13 @@ swc_ecma_transforms = { version = "0.228.0", path = "../swc_ecma_transforms", fe
] }
swc_ecma_transforms_base = { version = "0.136.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.162.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.197.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.198.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.126.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.97.0", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.13", path = "../swc_error_reporters" }
swc_node_comments = { version = "0.20.13", path = "../swc_node_comments" }
swc_plugin_proxy = { version = "0.40.0", path = "../swc_plugin_proxy", optional = true }
swc_plugin_runner = { version = "0.105.0", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_plugin_runner = { version = "0.106.0", path = "../swc_plugin_runner", optional = true, default-features = false }
swc_timer = { version = "0.21.15", path = "../swc_timer" }
swc_visit = { version = "0.5.8", path = "../swc_visit" }

Expand Down
16 changes: 8 additions & 8 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.224.0"
version = "0.225.0"

[package.metadata.docs.rs]
all-features = true
Expand Down Expand Up @@ -41,10 +41,10 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.14", path = "../swc_common" }
swc_ecma_ast = { version = "0.111.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.147.0", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "0.45.14", path = "../swc_ecma_loader" }
swc_ecma_loader = { version = "0.46.0", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.142.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.136.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.197.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.198.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.126.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.97.0", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.21.14", path = "../swc_fast_graph/" }
Expand All @@ -59,15 +59,15 @@ sha-1 = "0.10"
tempfile = "3.6.0"
url = "2.4.0"

swc_ecma_loader = { version = "0.45.14", path = "../swc_ecma_loader", features = [
swc_ecma_loader = { version = "0.46.0", path = "../swc_ecma_loader", features = [
"node",
"cache",
] }
swc_ecma_minifier = { version = "0.191.0", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "0.192.0", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_transforms_proposal = { version = "0.170.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.182.0", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.187.0", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_proposal = { version = "0.171.0", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.183.0", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.188.0", path = "../swc_ecma_transforms_typescript" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.15", 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.6.0"
version = "0.7.0"

[[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.88.0", features = [
swc_core = { version = "0.89.0", 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.5.0"
version = "0.6.0"

[features]
node = ["napi", "napi-derive"]
Expand All @@ -25,7 +25,7 @@ swc_common = { version = "0.33.14", path = "../swc_common", features = [
swc_config = { version = "0.1.9", path = "../swc_config" }
swc_ecma_ast = { version = "0.111.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.147.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.191.0", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "0.192.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.142.0", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "0.97.0", path = "../swc_ecma_visit" }
swc_timer = { version = "0.21.15", path = "../swc_timer" }
Expand Down
Loading

0 comments on commit 9c23f1c

Please sign in to comment.