Skip to content

Commit

Permalink
chore: Publish crates
Browse files Browse the repository at this point in the history
  • Loading branch information
swc-bot committed Dec 2, 2023
1 parent 630f9d3 commit 9a41fac
Show file tree
Hide file tree
Showing 25 changed files with 110 additions and 110 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,9 @@
- **(es/compat)** Handle private names from class properties pass ([#8090](https://github.com/swc-project/swc/issues/8090)) ([83a5a0c](https://github.com/swc-project/swc/commit/83a5a0c612b7ca97529720f8a35117957d4cb9a6))


- **(es/compat)** Fix destructuring of export class/function ([#8371](https://github.com/swc-project/swc/issues/8371)) ([630f9d3](https://github.com/swc-project/swc/commit/630f9d342fcb396074168cc379776774a832d73e))


- **(es/decorators)** Fix a regression about class expressions ([#8102](https://github.com/swc-project/swc/issues/8102)) ([cb4361f](https://github.com/swc-project/swc/commit/cb4361f2931cf222edbb449db6fe2c261c4b735d))


Expand Down Expand Up @@ -1124,9 +1127,6 @@
- **(bindings/node)** Link msvc runtime statically ([#7965](https://github.com/swc-project/swc/issues/7965)) ([0759779](https://github.com/swc-project/swc/commit/07597795cc39cce527f505bc5db304ad93082494))


- **(cargo)** Bump up wasmer ([#7294](https://github.com/swc-project/swc/issues/7294)) ([39d415c](https://github.com/swc-project/swc/commit/39d415cc1623456255dc2c7b87594f7fd00ab87b))


- **(cargo)** Update `wasmer` to `v3.3` ([#7352](https://github.com/swc-project/swc/issues/7352)) ([4e278be](https://github.com/swc-project/swc/commit/4e278befcf0071619ee583ffa7c8357ea4fd5c2f))


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.60.85"
version = "0.60.86"

[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.269.77", path = "../swc" }
swc = { optional = true, version = "0.269.78", path = "../swc" }
swc_common = { optional = true, version = "0.33.10", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.110.11", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.226.63", path = "../swc_ecma_transforms" }
swc_ecma_transforms = { optional = true, version = "0.226.64", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "0.96.11", 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.89.87"
version = "0.89.88"

[[bin]]
bench = false
Expand All @@ -32,7 +32,7 @@ swc_common = { version = "0.33.10", features = [
], path = "../swc_common" }
swc_ecma_ast = { version = "0.110.11", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.146.38", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.189.75", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "0.189.76", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "0.141.29", 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.269.77"
version = "0.269.78"

[lib]
bench = false
Expand Down Expand Up @@ -73,7 +73,7 @@ swc_common = { version = "0.33.10", path = "../swc_common", features = [
"sourcemap",
"parking_lot",
] }
swc_compiler_base = { version = "0.3.81", path = "../swc_compiler_base" }
swc_compiler_base = { version = "0.3.82", path = "../swc_compiler_base" }
swc_config = { version = "0.1.7", path = "../swc_config" }
swc_ecma_ast = { version = "0.110.11", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.146.38", path = "../swc_ecma_codegen" }
Expand All @@ -84,10 +84,10 @@ swc_ecma_loader = { version = "0.45.11", path = "../swc_ecma_loader", features =
"node",
"tsc",
] }
swc_ecma_minifier = { version = "0.189.75", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "0.189.76", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.141.29", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.203.63", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.226.63", path = "../swc_ecma_transforms", features = [
swc_ecma_preset_env = { version = "0.203.64", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.226.64", path = "../swc_ecma_transforms", features = [
"compat",
"module",
"optimization",
Expand All @@ -96,8 +96,8 @@ swc_ecma_transforms = { version = "0.226.63", path = "../swc_ecma_transforms", f
"typescript",
] }
swc_ecma_transforms_base = { version = "0.134.50", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { version = "0.160.56", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.195.63", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_compat = { version = "0.160.57", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_optimization = { version = "0.195.64", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.124.35", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.96.11", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "0.17.10", 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.222.73"
version = "0.222.74"

[package.metadata.docs.rs]
all-features = true
Expand Down Expand Up @@ -44,7 +44,7 @@ swc_ecma_codegen = { version = "0.146.38", path = "../swc_ecma_c
swc_ecma_loader = { version = "0.45.11", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "0.141.29", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.134.50", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "0.195.63", path = "../swc_ecma_transforms_optimization" }
swc_ecma_transforms_optimization = { version = "0.195.64", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "0.124.35", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.96.11", path = "../swc_ecma_visit" }
swc_fast_graph = { version = "0.21.10", path = "../swc_fast_graph/" }
Expand All @@ -63,11 +63,11 @@ swc_ecma_loader = { version = "0.45.11", path = "../swc_ecma_loader", features =
"node",
"cache",
] }
swc_ecma_minifier = { version = "0.189.75", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "0.189.76", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_transforms_proposal = { version = "0.168.60", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.180.61", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.185.61", path = "../swc_ecma_transforms_typescript" }
swc_ecma_transforms_proposal = { version = "0.168.61", path = "../swc_ecma_transforms_proposal" }
swc_ecma_transforms_react = { version = "0.180.62", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "0.185.62", path = "../swc_ecma_transforms_typescript" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.12", 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.4.84"
version = "0.4.85"

[[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.86.86", features = [
swc_core = { version = "0.86.87", 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.3.81"
version = "0.3.82"

[features]
node = ["napi", "napi-derive"]
Expand All @@ -25,7 +25,7 @@ swc_common = { version = "0.33.10", path = "../swc_common", features = [
swc_config = { version = "0.1.7", path = "../swc_config" }
swc_ecma_ast = { version = "0.110.11", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.146.38", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.189.75", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "0.189.76", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.141.29", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "0.96.11", path = "../swc_ecma_visit" }
swc_timer = { version = "0.21.12", path = "../swc_timer" }
Expand Down
Loading

0 comments on commit 9a41fac

Please sign in to comment.