diff --git a/CHANGELOG.md b/CHANGELOG.md index c029dc00b93..b8f789746b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,9 @@ - **(es/minifier)** Remove duplicate `var` declarations (#5373) ([4fdbe40](https://github.com/swc-project/swc/commit/4fdbe40c74e618a9bdf00253f970e27e20c6b6eb)) +- **(es/minifier)** Consider char frequencies (#5375) ([3943eb2](https://github.com/swc-project/swc/commit/3943eb24d11540928d436f63c4ffd6421400fcaf)) + + - **(swc_core)** Introduce package (#5364) ([27b464d](https://github.com/swc-project/swc/commit/27b464d90a410b5fb6dca438442e1e8669a28e32)) diff --git a/Cargo.lock b/Cargo.lock index ed5e2aa0478..60c2788c00f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3422,7 +3422,7 @@ dependencies = [ [[package]] name = "swc_ecma_minifier" -version = "0.142.7" +version = "0.142.8" dependencies = [ "ahash", "ansi_term", diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index b4f59cdaa52..278c82ae45d 100644 --- a/crates/swc_ecma_minifier/Cargo.toml +++ b/crates/swc_ecma_minifier/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"] license = "Apache-2.0" name = "swc_ecma_minifier" repository = "https://github.com/swc-project/swc.git" -version = "0.142.7" +version = "0.142.8" [package.metadata.docs.rs] all-features = true