chore: Publish crates

This commit is contained in:
SWC Bot 2022-06-25 06:00:36 +00:00
parent e6c78d0b1d
commit 8577caf535
4 changed files with 8 additions and 5 deletions

View File

@ -13,6 +13,9 @@
- **(html/codegen)** Improve API (#5031) ([8bf924a](https://github.com/swc-project/swc/commit/8bf924ae5f7305d1db65cf5a9b09f76cb7903e2b))
- **(html/minifier)** Add `remove_comments` option (#5037) ([e6c78d0](https://github.com/swc-project/swc/commit/e6c78d0b1d863c61882c941f62fccd04a501530b))
## [1.2.205] - 2022-06-24
### Bug Fixes

4
Cargo.lock generated
View File

@ -3911,7 +3911,7 @@ dependencies = [
[[package]]
name = "swc_html"
version = "0.19.0"
version = "0.20.0"
dependencies = [
"swc_html_ast",
"swc_html_codegen",
@ -3960,7 +3960,7 @@ dependencies = [
[[package]]
name = "swc_html_minifier"
version = "0.16.0"
version = "0.17.0"
dependencies = [
"once_cell",
"serde",

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.19.0"
version = "0.20.0"
[package.metadata.docs.rs]
all-features = true
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.10.0", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.15.0", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.16.0", path = "../swc_html_minifier", optional = true}
swc_html_minifier = {version = "0.17.0", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.13.0", path = "../swc_html_parser"}
swc_html_visit = {version = "0.10.0", path = "../swc_html_visit"}

View File

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