diff --git a/CHANGELOG.md b/CHANGELOG.md index fd749a5ff90..b736b1e59ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -53,6 +53,9 @@ - **(es/parser)** Reject `'use strict'` with non-simple params list in TS (#4416) ([6dc64c9](https://github.com/swc-project/swc/commit/6dc64c9ca0bccf27b325d3298f4ed7f07eaaa076)) +- **(es/resolver)** Use different syntax context for unresolved refs (#4436) ([53610fd](https://github.com/swc-project/swc/commit/53610fdafc83d25f0a5132b3381737aaffb1a29d)) + + - **(html)** Prepare processing system (#4358) ([7332dce](https://github.com/swc-project/swc/commit/7332dce4f801546f0c5f29b6919feaaebebc435a)) diff --git a/Cargo.lock b/Cargo.lock index b26a24dd6b8..1c8a0ef7938 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3019,7 +3019,7 @@ dependencies = [ [[package]] name = "swc_common" -version = "0.17.24" +version = "0.17.25" dependencies = [ "ahash", "anyhow", diff --git a/crates/swc_common/Cargo.toml b/crates/swc_common/Cargo.toml index aa6b0502b8f..a4137c4c2e0 100644 --- a/crates/swc_common/Cargo.toml +++ b/crates/swc_common/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_common" repository = "https://github.com/swc-project/swc.git" -version = "0.17.24" +version = "0.17.25" [package.metadata.docs.rs] all-features = true