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 29, 2022
1 parent 7f8c4e0 commit 1393a7c
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 20 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -31,6 +31,9 @@

- **(es/parser)** Make error message helpful (#6535) ([cb15721](https://github.com/swc-project/swc/commit/cb157215d26e5acfe74f7592da011ab9d5206207))


- **(xml/parser)** Parse cdata section (#6531) ([7f8c4e0](https://github.com/swc-project/swc/commit/7f8c4e04b246bef493a044f794ea1608f4550457))

### Performance


Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

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

10 changes: 5 additions & 5 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.4"
version = "0.6.0"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -16,7 +16,7 @@ rustdoc-args = ["--cfg", "docsrs"]
bench = false

[dependencies]
swc_xml_ast = {version = "0.4.17", path = "../swc_xml_ast"}
swc_xml_codegen = {version = "0.5.4", path = "../swc_xml_codegen"}
swc_xml_parser = {version = "0.5.4", path = "../swc_xml_parser"}
swc_xml_visit = {version = "0.4.17", path = "../swc_xml_visit"}
swc_xml_ast = {version = "0.5.0", path = "../swc_xml_ast"}
swc_xml_codegen = {version = "0.6.0", path = "../swc_xml_codegen"}
swc_xml_parser = {version = "0.6.0", path = "../swc_xml_parser"}
swc_xml_visit = {version = "0.5.0", path = "../swc_xml_visit"}
2 changes: 1 addition & 1 deletion crates/swc_xml_ast/Cargo.toml
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_xml_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.4.17"
version = "0.5.0"

[lib]
bench = false
Expand Down
8 changes: 4 additions & 4 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.4"
version = "0.6.0"

[lib]
bench = false
Expand All @@ -21,13 +21,13 @@ bitflags = "1.3.2"
rustc-hash = "1.1.0"
swc_atoms = { version = "0.4.25", path = "../swc_atoms" }
swc_common = { version = "0.29.16", path = "../swc_common" }
swc_xml_ast = { version = "0.4.17", path = "../swc_xml_ast" }
swc_xml_ast = { version = "0.5.0", path = "../swc_xml_ast" }
swc_xml_codegen_macros = { version = "0.1.0", path = "../swc_xml_codegen_macros" }

[dev-dependencies]
swc_common = { version = "0.29.16", path = "../swc_common", features = [
"sourcemap",
] }
swc_xml_parser = { version = "0.5.4", path = "../swc_xml_parser" }
swc_xml_visit = { version = "0.4.17", path = "../swc_xml_visit" }
swc_xml_parser = { version = "0.6.0", path = "../swc_xml_parser" }
swc_xml_visit = { version = "0.5.0", path = "../swc_xml_visit" }
testing = { version = "0.31.17", path = "../testing" }
6 changes: 3 additions & 3 deletions 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.4"
version = "0.6.0"

[lib]
bench = false
Expand All @@ -21,10 +21,10 @@ debug = []
[dependencies]
swc_atoms = { version = "0.4.25", path = "../swc_atoms" }
swc_common = { version = "0.29.16", path = "../swc_common" }
swc_xml_ast = { version = "0.4.17", path = "../swc_xml_ast" }
swc_xml_ast = { version = "0.5.0", path = "../swc_xml_ast" }

[dev-dependencies]
serde = "1.0.127"
serde_json = "1.0.66"
swc_xml_visit = { version = "0.4.17", path = "../swc_xml_visit" }
swc_xml_visit = { version = "0.5.0", path = "../swc_xml_visit" }
testing = { version = "0.31.17", path = "../testing" }
4 changes: 2 additions & 2 deletions crates/swc_xml_visit/Cargo.toml
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_xml_visit"
repository = "https://github.com/swc-project/swc.git"
version = "0.4.17"
version = "0.5.0"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -27,4 +27,4 @@ serde = { version = "1", optional = true }
swc_atoms = { version = "0.4.25", path = "../swc_atoms" }
swc_common = { version = "0.29.16", path = "../swc_common" }
swc_visit = { version = "0.5.3", path = "../swc_visit" }
swc_xml_ast = { version = "0.4.17", path = "../swc_xml_ast" }
swc_xml_ast = { version = "0.5.0", path = "../swc_xml_ast" }

0 comments on commit 1393a7c

Please sign in to comment.