chore: Publish crates

This commit is contained in:
SWC Bot 2022-04-25 05:37:55 +00:00
parent 9b26dbd457
commit 255c4d369e
3 changed files with 5 additions and 2 deletions

View File

@ -11,6 +11,9 @@
- **(es/minifier)** Don't drop arguments to an IIFE without body (#4419) ([aa19b65](https://github.com/swc-project/swc/commit/aa19b65f9cb1170c36991649348e064406523699)) - **(es/minifier)** Don't drop arguments to an IIFE without body (#4419) ([aa19b65](https://github.com/swc-project/swc/commit/aa19b65f9cb1170c36991649348e064406523699))
- **(html/lexer)** Fix lexing of html entity (#4423) ([9b26dbd](https://github.com/swc-project/swc/commit/9b26dbd45763fbf48dd81a1652608cc90736fe4f))
- **(html/parser)** Parse foreign attributes (#4400) ([cf3be64](https://github.com/swc-project/swc/commit/cf3be649bb327feda8bce4e7ab7eca92d248c2da)) - **(html/parser)** Parse foreign attributes (#4400) ([cf3be64](https://github.com/swc-project/swc/commit/cf3be649bb327feda8bce4e7ab7eca92d248c2da))
### Features ### Features

2
Cargo.lock generated
View File

@ -3813,7 +3813,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html_parser" name = "swc_html_parser"
version = "0.5.0" version = "0.5.1"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"lexical", "lexical",

View File

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