chore: Publish crates

This commit is contained in:
SWC Bot 2022-11-18 01:24:23 +00:00
parent dd4b9e87de
commit e055d2c4f8
4 changed files with 11 additions and 5 deletions

View File

@ -19,6 +19,12 @@
- **(html/minifier)** Remove empty script and style tags with attributes (#6447) ([7441721](https://github.com/swc-project/swc/commit/74417217a98bb26dcce7f913bb8ee35b538f0d06)) - **(html/minifier)** Remove empty script and style tags with attributes (#6447) ([7441721](https://github.com/swc-project/swc/commit/74417217a98bb26dcce7f913bb8ee35b538f0d06))
### Refactor
- **(bindings)** Deprecate `jsvalue::*_serde` (#6462) ([dd4b9e8](https://github.com/swc-project/swc/commit/dd4b9e87de93294ed402c357745a2e0d268b34ef))
## [1.3.18] - 2022-11-16 ## [1.3.18] - 2022-11-16
### Bug Fixes ### Bug Fixes

4
Cargo.lock generated
View File

@ -168,7 +168,7 @@ dependencies = [
[[package]] [[package]]
name = "binding_macros" name = "binding_macros"
version = "0.20.101" version = "0.20.102"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"console_error_panic_hook", "console_error_panic_hook",
@ -3165,7 +3165,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_core" name = "swc_core"
version = "0.43.18" version = "0.43.19"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"binding_macros", "binding_macros",

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "binding_macros" name = "binding_macros"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.20.101" version = "0.20.102"
[lib] [lib]
bench = false bench = false

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_core" name = "swc_core"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.43.18" version = "0.43.19"
[package.metadata.docs.rs] [package.metadata.docs.rs]
features = [ features = [
"common_perf", "common_perf",
@ -318,7 +318,7 @@ wasmer = { optional = true, version = "2.3.0", default-features = false }
wasmer-wasi = { optional = true, version = "2.3.0", default-features = false } wasmer-wasi = { optional = true, version = "2.3.0", default-features = false }
# swc_* dependencies # swc_* dependencies
binding_macros = { optional = true, version = "0.20.101", path = "../binding_macros" } binding_macros = { optional = true, version = "0.20.102", path = "../binding_macros" }
swc = { optional = true, version = "0.232.99", path = "../swc" } swc = { optional = true, version = "0.232.99", path = "../swc" }
swc_atoms = { optional = true, version = "0.4.24", path = "../swc_atoms" } swc_atoms = { optional = true, version = "0.4.24", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "0.192.86", path = "../swc_bundler" } swc_bundler = { optional = true, version = "0.192.86", path = "../swc_bundler" }