diff --git a/CHANGELOG.md b/CHANGELOG.md index e8ac3626eab..e4a9b9e6329 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,12 @@ - **(wasm)** Add json error (#4853) ([fd3501b](https://github.com/swc-project/swc/commit/fd3501bf87f4e711e72e9e8fd12f64f4cfa08157)) +### Performance + + + +- **(html/parser)** Improve lexer performance (#4869) ([8b67bb9](https://github.com/swc-project/swc/commit/8b67bb99fa98f2ad7299d309e30e3d6c1208232f)) + ### Testing diff --git a/Cargo.lock b/Cargo.lock index 7c2eb7c4b5f..702dfd74b29 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3950,7 +3950,7 @@ dependencies = [ [[package]] name = "swc_html_parser" -version = "0.10.5" +version = "0.10.6" dependencies = [ "bitflags", "criterion", diff --git a/crates/swc_html_parser/Cargo.toml b/crates/swc_html_parser/Cargo.toml index 5dfe70cdc32..13e18aa0716 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.10.5" +version = "0.10.6" [lib] bench = false