chore: Publish crates

This commit is contained in:
SWC Bot 2022-07-20 07:53:58 +00:00
parent bd1c2cc7e6
commit 03c92cc6f8
4 changed files with 8 additions and 5 deletions

View File

@ -20,6 +20,9 @@
- **(es/codegen)** Optimize number and bigint literal (#5223) ([3f0856d](https://github.com/swc-project/swc/commit/3f0856db2ef7dde001cd482088a094f49de7ddac)) - **(es/codegen)** Optimize number and bigint literal (#5223) ([3f0856d](https://github.com/swc-project/swc/commit/3f0856db2ef7dde001cd482088a094f49de7ddac))
- **(es/plugin)** Add experimental metadata field (#5254) ([bd1c2cc](https://github.com/swc-project/swc/commit/bd1c2cc7e6dcc04c3d8b59f34b4b88be29ec1ccb))
- **(node)** Coerce fallback bindings (#5250) ([7e6ffff](https://github.com/swc-project/swc/commit/7e6ffffbd3834f220e940d447bf1632f70f3b9a7)) - **(node)** Coerce fallback bindings (#5250) ([7e6ffff](https://github.com/swc-project/swc/commit/7e6ffffbd3834f220e940d447bf1632f70f3b9a7))

4
Cargo.lock generated
View File

@ -4115,7 +4115,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_plugin" name = "swc_plugin"
version = "0.84.0" version = "0.85.0"
dependencies = [ dependencies = [
"swc_atoms", "swc_atoms",
"swc_common", "swc_common",
@ -4127,7 +4127,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_plugin_macro" name = "swc_plugin_macro"
version = "0.6.1" version = "0.7.0"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",

View File

@ -6,7 +6,7 @@ edition = "2018"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_plugin" name = "swc_plugin"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.84.0" version = "0.85.0"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -35,4 +35,4 @@ swc_ecmascript = { version = "0.184.0", path = "../swc_ecmascript", features = [
swc_plugin_proxy = { version = "0.15.0", path = "../swc_plugin_proxy", features = [ swc_plugin_proxy = { version = "0.15.0", path = "../swc_plugin_proxy", features = [
"plugin-mode", "plugin-mode",
] } ] }
swc_plugin_macro = { version = "0.6.1", path = "../swc_plugin_macro" } swc_plugin_macro = { version = "0.7.0", path = "../swc_plugin_macro" }

View File

@ -6,7 +6,7 @@ edition = "2018"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_plugin_macro" name = "swc_plugin_macro"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.6.1" version = "0.7.0"
[lib] [lib]
bench = false bench = false