diff --git a/CHANGELOG.md b/CHANGELOG.md index 88f248ae03b..071536c5e49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -53,6 +53,9 @@ +- **(es)** Use `Mutex` from `parking_lot` (#3830) ([351b814](https://github.com/swc-project/swc/commit/351b814ed0f1ca36a1e8fd352674689ffe392eda)) + + - **(es/parser)** Remove duplicated instantiations of `Parser` to reduce binary size (#3813) ([f5103a7](https://github.com/swc-project/swc/commit/f5103a77256060e2c27ca360d0c58bbcc6b92b13)) ### Testing diff --git a/Cargo.lock b/Cargo.lock index 7e16b2a477c..dd7bf0e61e3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2697,7 +2697,7 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" [[package]] name = "swc" -version = "0.139.0" +version = "0.139.1" dependencies = [ "ahash", "anyhow", diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 97897844f0b..32d7b501dc7 100644 --- a/crates/swc/Cargo.toml +++ b/crates/swc/Cargo.toml @@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc" repository = "https://github.com/swc-project/swc.git" -version = "0.139.0" +version = "0.139.1" [lib] name = "swc"