diff --git a/CHANGELOG.md b/CHANGELOG.md index 40214c0a8f1..c2cfe92489c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog ## [unreleased] +### Features + + + +- **(es/minifier)** Relax function inline requirement (#5607) ([4ef99f3](https://github.com/swc-project/swc/commit/4ef99f346b9e7e4dfd1f42e7308c6b6e1142e311)) + +## [1.2.246] - 2022-09-01 + ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 5f506a46aca..06c7748d4ab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3391,7 +3391,7 @@ dependencies = [ [[package]] name = "swc_ecma_minifier" -version = "0.151.0" +version = "0.151.1" dependencies = [ "ahash", "ansi_term", diff --git a/crates/swc_ecma_minifier/Cargo.toml b/crates/swc_ecma_minifier/Cargo.toml index a0c5476c176..a2a735f9ddf 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.151.0" +version = "0.151.1" [package.metadata.docs.rs] all-features = true