diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d93de1ad21..77b81b1fc9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,6 +44,9 @@ +- **(es/minifier)** Make more passes parallel (#4821) ([4b27df9](https://github.com/swc-project/swc/commit/4b27df9f123262161e06f242a4d5098364a9844f)) + + - **(html/parser)** Improve lexer (#4796) ([8894e77](https://github.com/swc-project/swc/commit/8894e77bc15d63080c5d91048734b33a8f299369)) diff --git a/Cargo.lock b/Cargo.lock index bb0cd401bce..4c90757f5cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3414,7 +3414,7 @@ dependencies = [ [[package]] name = "swc_ecma_minifier" -version = "0.116.0" +version = "0.116.1" dependencies = [ "ahash", "ansi_term", diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index 8ffd8b9f7e9..7cb5403117a 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.116.0" +version = "0.116.1" [package.metadata.docs.rs] all-features = true