diff --git a/CHANGELOG.md b/CHANGELOG.md index 36ba79f5140..59203916575 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,9 @@ - **(html/minifier)** Small fix (#5079) ([5ac5ae2](https://github.com/swc-project/swc/commit/5ac5ae200c3c896f205e7c4567a5a6281d16015b)) +- **(html/minifier)** Fix bugs of the smart mode (#5093) ([5932a0a](https://github.com/swc-project/swc/commit/5932a0a2ef42ae67f1d2eceebe752b01160ca6fe)) + + - **(node/types)** Add `simplify` (#5105) ([2a29b50](https://github.com/swc-project/swc/commit/2a29b50c5eb7e1441c2735fec9686771c6050053)) ### Features diff --git a/Cargo.lock b/Cargo.lock index e95f864ca14..bf51e0a7a22 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3969,7 +3969,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.30.0" +version = "0.30.1" dependencies = [ "once_cell", "serde", diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 70732e13431..2a1ada1a0e4 100644 --- a/crates/swc_html_minifier/Cargo.toml +++ b/crates/swc_html_minifier/Cargo.toml @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_html_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.30.0" +version = "0.30.1" [lib] bench = false