chore: Publish crates

This commit is contained in:
SWC Bot 2022-11-18 03:26:21 +00:00
parent 3a0d98b6e9
commit 19b45d299f
5 changed files with 12 additions and 9 deletions

View File

@ -10,6 +10,9 @@
- **(es/minifier)** Preserve unused imported specifiers (#6458) ([dabea71](https://github.com/swc-project/swc/commit/dabea71c4461a96836e4456bd2c6bbcf07f238a4)) - **(es/minifier)** Preserve unused imported specifiers (#6458) ([dabea71](https://github.com/swc-project/swc/commit/dabea71c4461a96836e4456bd2c6bbcf07f238a4))
- **(xml/parser)** Fix parsing of comments (#6449) ([3a0d98b](https://github.com/swc-project/swc/commit/3a0d98b6e986dd175b64534bc99c2a59a99b97d0))
### Features ### Features

6
Cargo.lock generated
View File

@ -4333,7 +4333,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_xml" name = "swc_xml"
version = "0.5.0" version = "0.5.1"
dependencies = [ dependencies = [
"swc_xml_ast", "swc_xml_ast",
"swc_xml_codegen", "swc_xml_codegen",
@ -4354,7 +4354,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_xml_codegen" name = "swc_xml_codegen"
version = "0.5.0" version = "0.5.1"
dependencies = [ dependencies = [
"auto_impl", "auto_impl",
"bitflags", "bitflags",
@ -4381,7 +4381,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_xml_parser" name = "swc_xml_parser"
version = "0.5.0" version = "0.5.1"
dependencies = [ dependencies = [
"serde", "serde",
"serde_json", "serde_json",

View File

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

View File

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

View File

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