diff --git a/CHANGELOG.md b/CHANGELOG.md index 67065c963913..e7f49143857a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -88,6 +88,12 @@ - **(es/parser)** Remove duplicate (#4750) ([b7a195a](https://github.com/swc-project/swc/commit/b7a195a1cf18763b19846b7f14efc80a0f17fd1e)) +### Testing + + + +- **(html/parser)** Enable error reporting tests (#4764) ([984d69e](https://github.com/swc-project/swc/commit/984d69e67b4a791922dd62050937a77f1f499927)) + ## [1.2.189] - 2022-05-21 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 5e5ac5062c17..1c62264c2194 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3966,7 +3966,7 @@ dependencies = [ [[package]] name = "swc_html_parser" -version = "0.8.9" +version = "0.8.10" dependencies = [ "bitflags", "criterion", diff --git a/crates/swc_html_parser/Cargo.toml b/crates/swc_html_parser/Cargo.toml index 5630bf0cd0be..b112e456a07e 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.8.9" +version = "0.8.10" [lib] bench = false