diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cecc79a063..7328e2bf720 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ - **(es/minifier)** Apply name mangler for more cases (#4840) ([0567f67](https://github.com/swc-project/swc/commit/0567f67664cc2407d45bf8b17821edc4b828198c)) + +- **(html/codegen)** Prevent omitting body for title (#4814) ([7407f21](https://github.com/swc-project/swc/commit/7407f218f8b294d3d7998334bdd908abc519ecb0)) + ## [1.2.195] - 2022-05-29 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index a331b4ba131..e9dcb603cbf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3910,7 +3910,7 @@ dependencies = [ [[package]] name = "swc_html_codegen" -version = "0.10.3" +version = "0.10.4" dependencies = [ "auto_impl", "bitflags", diff --git a/crates/swc_html_codegen/Cargo.toml b/crates/swc_html_codegen/Cargo.toml index c930d62b4d0..3178d030f51 100644 --- a/crates/swc_html_codegen/Cargo.toml +++ b/crates/swc_html_codegen/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_html_codegen" repository = "https://github.com/swc-project/swc.git" -version = "0.10.3" +version = "0.10.4" [lib] bench = false