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 5, 2024
1 parent 6a48be4 commit 4f139d4
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 17 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog
## [unreleased]

### Bug Fixes



- **(es/quote)** Allow variables typed `AssignTarget` ([#8602](https://github.com/swc-project/swc/issues/8602)) ([6a48be4](https://github.com/swc-project/swc/commit/6a48be4b6b91c71687c2edc1cf9db9538d9f5650))

### Refactor


Expand Down Expand Up @@ -1473,9 +1479,6 @@

- **(es/parser)** Re-lex `<<` as two `<`-s if required ([#7439](https://github.com/swc-project/swc/issues/7439)) ([6850372](https://github.com/swc-project/swc/commit/68503726a78cfc37cd995eda69a3e8982b6fdf57))


- **(plugin/runner)** Disable wasi env cleanup ([#7607](https://github.com/swc-project/swc/issues/7607)) ([8209594](https://github.com/swc-project/swc/commit/8209594a8c11d2a65061763fef5d3a7780976f39))

### Features


Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

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

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.0"
version = "0.8.1"

[[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.0", features = [
swc_core = { version = "0.90.1", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",
Expand Down
4 changes: 2 additions & 2 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 = "0.90.0"
version = "0.90.1"
[package.metadata.docs.rs]
features = [
"allocator_node",
Expand Down Expand Up @@ -345,7 +345,7 @@ swc_ecma_loader = { optional = true, version = "0.45.18", path
swc_ecma_minifier = { optional = true, version = "0.192.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "0.143.0", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { optional = true, version = "0.206.0", path = "../swc_ecma_preset_env" }
swc_ecma_quote_macros = { optional = true, version = "0.54.0", path = "../swc_ecma_quote_macros" }
swc_ecma_quote_macros = { optional = true, version = "0.54.1", path = "../swc_ecma_quote_macros" }
swc_ecma_transforms_base = { optional = true, version = "0.137.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { optional = true, version = "0.163.0", path = "../swc_ecma_transforms_compat" }
swc_ecma_transforms_module = { optional = true, version = "0.180.0", path = "../swc_ecma_transforms_module" }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_ecma_quote/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_ecma_quote"
repository = "https://github.com/swc-project/swc.git"
version = "0.59.0"
version = "0.59.1"

[lib]
bench = false
Expand All @@ -15,7 +15,7 @@ bench = false
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.16", path = "../swc_common" }
swc_ecma_ast = { version = "0.112.0", path = "../swc_ecma_ast" }
swc_ecma_quote_macros = { version = "0.54.0", path = "../swc_ecma_quote_macros" }
swc_ecma_quote_macros = { version = "0.54.1", path = "../swc_ecma_quote_macros" }

[dev-dependencies]
testing = { version = "0.35.17", path = "../testing" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_quote_macros/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_ecma_quote_macros"
repository = "https://github.com/swc-project/swc.git"
version = "0.54.0"
version = "0.54.1"

[lib]
bench = false
Expand Down
4 changes: 2 additions & 2 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 = "0.239.0"
version = "0.239.1"

[package.metadata.docs.rs]
all-features = true
Expand Down Expand Up @@ -43,7 +43,7 @@ swc_ecma_codegen = { version = "0.148.0", path = "../swc_ecma_codegen", optio
swc_ecma_minifier = { version = "0.192.0", path = "../swc_ecma_minifier", optional = true }
swc_ecma_parser = { version = "0.143.0", path = "../swc_ecma_parser", optional = true, default-features = false }
swc_ecma_preset_env = { version = "0.206.0", path = "../swc_ecma_preset_env", optional = true }
swc_ecma_quote = { version = "0.59.0", path = "../swc_ecma_quote", optional = true }
swc_ecma_quote = { version = "0.59.1", path = "../swc_ecma_quote", optional = true }
swc_ecma_transforms = { version = "0.229.0", path = "../swc_ecma_transforms", optional = true }
swc_ecma_utils = { version = "0.127.0", path = "../swc_ecma_utils", optional = true }
swc_ecma_visit = { version = "0.98.0", path = "../swc_ecma_visit", optional = true }
Expand Down

0 comments on commit 4f139d4

Please sign in to comment.