Skip to content

Commit

Permalink
chore: Publish crates
Browse files Browse the repository at this point in the history
  • Loading branch information
swc-bot committed Nov 18, 2022
1 parent 3a0d98b commit 19b45d2
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -10,6 +10,9 @@

- **(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


Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions crates/swc_xml/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_xml"
repository = "https://github.com/swc-project/swc.git"
version = "0.5.0"
version = "0.5.1"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -17,6 +17,6 @@ bench = false

[dependencies]
swc_xml_ast = {version = "0.4.15", path = "../swc_xml_ast"}
swc_xml_codegen = {version = "0.5.0", path = "../swc_xml_codegen"}
swc_xml_parser = {version = "0.5.0", path = "../swc_xml_parser"}
swc_xml_codegen = {version = "0.5.1", path = "../swc_xml_codegen"}
swc_xml_parser = {version = "0.5.1", path = "../swc_xml_parser"}
swc_xml_visit = {version = "0.4.15", path = "../swc_xml_visit"}
4 changes: 2 additions & 2 deletions crates/swc_xml_codegen/Cargo.toml
Expand Up @@ -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.5.0"
version = "0.5.1"

[lib]
bench = false
Expand All @@ -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 = [
"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" }
testing = { version = "0.31.14", path = "../testing" }
2 changes: 1 addition & 1 deletion crates/swc_xml_parser/Cargo.toml
Expand Up @@ -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.5.0"
version = "0.5.1"

[lib]
bench = false
Expand Down

0 comments on commit 19b45d2

Please sign in to comment.