diff --git a/CHANGELOG.md b/CHANGELOG.md index d04523abe11..97f46ca3820 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,9 @@ - **(cli)** Emit sourcemap with file inputs (#5213) ([3e3be80](https://github.com/swc-project/swc/commit/3e3be80efda09ae494f8962947562b4411874061)) +- **(es/modules)** Preserve order for ts import equals (#5215) ([6b1ce09](https://github.com/swc-project/swc/commit/6b1ce09b6f59e53a750a71e447a148aedcef8468)) + + - **(html/parser)** Fix span (#5209) ([b4daa30](https://github.com/swc-project/swc/commit/b4daa3005803be23676bec666bb8f8791f2472b3)) ### Features diff --git a/Cargo.lock b/Cargo.lock index 507a5dd113c..eee12e45e22 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3647,7 +3647,7 @@ dependencies = [ [[package]] name = "swc_ecma_transforms_module" -version = "0.132.0" +version = "0.132.1" dependencies = [ "Inflector", "ahash", diff --git a/crates/swc_ecma_transforms_module/Cargo.toml b/crates/swc_ecma_transforms_module/Cargo.toml index cd62c80da2f..2106d94d88d 100644 --- a/crates/swc_ecma_transforms_module/Cargo.toml +++ b/crates/swc_ecma_transforms_module/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_transforms_module" repository = "https://github.com/swc-project/swc.git" -version = "0.132.0" +version = "0.132.1" [lib] bench = false