chore: Publish crates

This commit is contained in:
SWC Bot 2022-06-14 05:41:22 +00:00
parent 3957bc64b7
commit 65522af10e
4 changed files with 21 additions and 5 deletions

View File

@ -1,6 +1,22 @@
# Changelog # Changelog
## [unreleased] ## [unreleased]
### Features
- **(html/minifier)** Add `collapse_boolean_attributes` option (#4960) ([3957bc6](https://github.com/swc-project/swc/commit/3957bc64b7d278cdf737e9da514fa94780044be2))
## [1.2.201] - 2022-06-14
### Bug Fixes
- **(ci)** Revert malloc changes ([709ad3e](https://github.com/swc-project/swc/commit/709ad3e087e833c5bc69c887ca963e4b7a9a81f7))
## [1.2.200] - 2022-06-14
### Bug Fixes ### Bug Fixes

4
Cargo.lock generated
View File

@ -3911,7 +3911,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html" name = "swc_html"
version = "0.12.0" version = "0.13.0"
dependencies = [ dependencies = [
"swc_html_ast", "swc_html_ast",
"swc_html_codegen", "swc_html_codegen",
@ -3960,7 +3960,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html_minifier" name = "swc_html_minifier"
version = "0.9.1" version = "0.10.0"
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_html" name = "swc_html"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.12.0" version = "0.13.0"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies] [dependencies]
swc_html_ast = {version = "0.9.0", path = "../swc_html_ast"} swc_html_ast = {version = "0.9.0", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.12.0", path = "../swc_html_codegen"} swc_html_codegen = {version = "0.12.0", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.9.0", path = "../swc_html_minifier", optional = true} swc_html_minifier = {version = "0.10.0", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.12.0", path = "../swc_html_parser"} swc_html_parser = {version = "0.12.0", path = "../swc_html_parser"}
swc_html_visit = {version = "0.9.0", path = "../swc_html_visit"} swc_html_visit = {version = "0.9.0", path = "../swc_html_visit"}

View File

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