From 255c4d369e159945e0d268a2ea6c78cfa65b2b2c Mon Sep 17 00:00:00 2001 From: SWC Bot Date: Mon, 25 Apr 2022 05:37:55 +0000 Subject: [PATCH] chore: Publish crates --- CHANGELOG.md | 3 +++ Cargo.lock | 2 +- crates/swc_html_parser/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 768a2548411..53a5a21aef6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)) +- **(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)) ### Features diff --git a/Cargo.lock b/Cargo.lock index db82d8f1fb4..1a0fccf8870 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3813,7 +3813,7 @@ dependencies = [ [[package]] name = "swc_html_parser" -version = "0.5.0" +version = "0.5.1" dependencies = [ "bitflags", "lexical", diff --git a/crates/swc_html_parser/Cargo.toml b/crates/swc_html_parser/Cargo.toml index ae1ba40f84c..ec799c48b93 100644 --- a/crates/swc_html_parser/Cargo.toml +++ b/crates/swc_html_parser/Cargo.toml @@ -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.5.0" +version = "0.5.1" [lib] bench = false