chore: Publish crates

This commit is contained in:
SWC Bot 2022-05-12 05:09:22 +00:00
parent b8fa3bc456
commit 67de03579f
6 changed files with 17 additions and 14 deletions

View File

@ -25,6 +25,9 @@
- **(html/parser)** Remove unused code (#4613) ([a378e1e](https://github.com/swc-project/swc/commit/a378e1e041a60e0a80f5a2e97c534b96b49888e4))
- **(html/parser)** Improve public API (#4626) ([b8fa3bc](https://github.com/swc-project/swc/commit/b8fa3bc4569429046494488cdab9c14b26135f6b))
### Testing

8
Cargo.lock generated
View File

@ -3827,7 +3827,7 @@ dependencies = [
[[package]]
name = "swc_html"
version = "0.6.0"
version = "0.7.0"
dependencies = [
"swc_html_ast",
"swc_html_codegen",
@ -3849,7 +3849,7 @@ dependencies = [
[[package]]
name = "swc_html_codegen"
version = "0.6.0"
version = "0.7.0"
dependencies = [
"auto_impl",
"bitflags",
@ -3875,7 +3875,7 @@ dependencies = [
[[package]]
name = "swc_html_minifier"
version = "0.3.1"
version = "0.4.0"
dependencies = [
"swc_atoms",
"swc_common",
@ -3888,7 +3888,7 @@ dependencies = [
[[package]]
name = "swc_html_parser"
version = "0.6.0"
version = "0.7.0"
dependencies = [
"bitflags",
"lexical",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_html"
repository = "https://github.com/swc-project/swc.git"
version = "0.6.0"
version = "0.7.0"
[package.metadata.docs.rs]
all-features = true
@ -20,7 +20,7 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.6.0", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.6.0", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.3.0", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.6.0", path = "../swc_html_parser"}
swc_html_codegen = {version = "0.7.0", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.4.0", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.7.0", path = "../swc_html_parser"}
swc_html_visit = {version = "0.6.0", path = "../swc_html_visit"}

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_html_codegen"
repository = "https://github.com/swc-project/swc.git"
version = "0.6.0"
version = "0.7.0"
[lib]
bench = false
@ -24,6 +24,6 @@ swc_html_codegen_macros = {version = "0.1.0", path = "../swc_html_codegen_macros
swc_common = { version = "0.18.0", path = "../swc_common", features = [
"sourcemap",
]}
swc_html_parser = {version = "0.6.0", path = "../swc_html_parser"}
swc_html_parser = {version = "0.7.0", path = "../swc_html_parser"}
swc_html_visit = {version = "0.6.0", path = "../swc_html_visit"}
testing = {version = "0.20.0", path = "../testing"}

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_html_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.3.1"
version = "0.4.0"
[lib]
bench = false
@ -19,6 +19,6 @@ swc_html_ast = {version = "0.6.0", path = "../swc_html_ast"}
swc_html_visit = {version = "0.6.0", path = "../swc_html_visit"}
[dev-dependencies]
swc_html_codegen = {version = "0.6.0", path = "../swc_html_codegen"}
swc_html_parser = {version = "0.6.0", path = "../swc_html_parser"}
swc_html_codegen = {version = "0.7.0", path = "../swc_html_codegen"}
swc_html_parser = {version = "0.7.0", path = "../swc_html_parser"}
testing = {version = "0.20.0", path = "../testing"}

View File

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