chore: Publish crates

This commit is contained in:
SWC Bot 2022-12-02 05:00:20 +00:00
parent cdf0d8a8b5
commit d00b29120a
5 changed files with 12 additions and 9 deletions

View File

@ -13,6 +13,9 @@
- **(es/parser)** Fix `typeof` in `TSCallSignatureDeclaration` (#6553) ([aa28aa0](https://github.com/swc-project/swc/commit/aa28aa0c7fefcaea063340c711a5ea8a3ba60e7b))
- **(xml/parser)** Fix parsing of legacy document types (#6555) ([cdf0d8a](https://github.com/swc-project/swc/commit/cdf0d8a8b59a05498b6ca609d8a2ecf3c2f35f28))
### Features

6
Cargo.lock generated
View File

@ -4436,7 +4436,7 @@ dependencies = [
[[package]]
name = "swc_xml"
version = "0.7.0"
version = "0.7.1"
dependencies = [
"swc_xml_ast",
"swc_xml_codegen",
@ -4457,7 +4457,7 @@ dependencies = [
[[package]]
name = "swc_xml_codegen"
version = "0.7.0"
version = "0.7.1"
dependencies = [
"auto_impl",
"bitflags",
@ -4484,7 +4484,7 @@ dependencies = [
[[package]]
name = "swc_xml_parser"
version = "0.7.0"
version = "0.7.1"
dependencies = [
"serde",
"serde_json",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_xml"
repository = "https://github.com/swc-project/swc.git"
version = "0.7.0"
version = "0.7.1"
[package.metadata.docs.rs]
all-features = true
@ -17,6 +17,6 @@ bench = false
[dependencies]
swc_xml_ast = {version = "0.6.0", path = "../swc_xml_ast"}
swc_xml_codegen = {version = "0.7.0", path = "../swc_xml_codegen"}
swc_xml_parser = {version = "0.7.0", path = "../swc_xml_parser"}
swc_xml_codegen = {version = "0.7.1", path = "../swc_xml_codegen"}
swc_xml_parser = {version = "0.7.1", path = "../swc_xml_parser"}
swc_xml_visit = {version = "0.6.0", path = "../swc_xml_visit"}

View File

@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_xml_codegen"
repository = "https://github.com/swc-project/swc.git"
version = "0.7.0"
version = "0.7.1"
[lib]
bench = false
@ -28,6 +28,6 @@ swc_xml_codegen_macros = { version = "0.1.0", path = "../swc_xml_codegen_macros"
swc_common = { version = "0.29.16", path = "../swc_common", features = [
"sourcemap",
] }
swc_xml_parser = { version = "0.7.0", path = "../swc_xml_parser" }
swc_xml_parser = { version = "0.7.1", path = "../swc_xml_parser" }
swc_xml_visit = { version = "0.6.0", path = "../swc_xml_visit" }
testing = { version = "0.31.17", path = "../testing" }

View File

@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json"]
license = "Apache-2.0"
name = "swc_xml_parser"
repository = "https://github.com/swc-project/swc.git"
version = "0.7.0"
version = "0.7.1"
[lib]
bench = false