diff --git a/CHANGELOG.md b/CHANGELOG.md index ced488523ad1..2070cf0f94ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,9 @@ - **(plugin/runner)** Pin version of `virtual-fs` ([#8827](https://github.com/swc-project/swc/issues/8827)) ([089f61b](https://github.com/swc-project/swc/commit/089f61bc37bb9c09dc94a24a5518840883827f57)) + +- **(visit)** Improve `Map` implementation for `Box` ([#8819](https://github.com/swc-project/swc/issues/8819)) ([dc04657](https://github.com/swc-project/swc/commit/dc046572def13a3eb625520c5a8bfd651b86f3a3)) + ## [1.4.12] - 2024-04-04 ### Bug Fixes @@ -1373,12 +1376,4 @@ - **(es/module)** Add an option to make resolver fully resolve `index.js` ([#7945](https://github.com/swc-project/swc/issues/7945)) ([7e8d72d](https://github.com/swc-project/swc/commit/7e8d72d03b312b7a48c17afa8d2a4d7f4e802a6a)) -## [1.3.84] - 2023-09-11 - -### Bug Fixes - - - -- **(es/codegen)** Use `emitAssertForImportAttributes` ([#7936](https://github.com/swc-project/swc/issues/7936)) ([dac8888](https://github.com/swc-project/swc/commit/dac8888829841e1de19d53c887a2a52c9ab5feaa)) - diff --git a/Cargo.lock b/Cargo.lock index 328eba81185b..fb883afcdfc2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5278,7 +5278,7 @@ dependencies = [ [[package]] name = "swc_visit" -version = "0.5.11" +version = "0.5.12" dependencies = [ "either", "swc_visit_macros", diff --git a/crates/swc_visit/Cargo.toml b/crates/swc_visit/Cargo.toml index 8c2d3f416fd1..5119d8ba25d7 100644 --- a/crates/swc_visit/Cargo.toml +++ b/crates/swc_visit/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_visit" repository = "https://github.com/swc-project/swc.git" -version = "0.5.11" +version = "0.5.12" [lib] bench = false