diff --git a/CHANGELOG.md b/CHANGELOG.md index 28bcc6699a5..cf7a2768340 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,9 @@ - **(es/ast)** Use `ModuleExportName` for `ExportNamespaceSpecifier` (#3195) ([432f877](https://github.com/swc-project/swc/commit/432f87779003e50f17bcaedc35edb8583644c548)) +- **(es/parser)** Accept strings for import/exports (#3190) ([3fb76f6](https://github.com/swc-project/swc/commit/3fb76f64c4e5ee49b0415757b3ead5fc753a93b6)) + + - **(es/transforms)** Add `Assumptions` (#3215) ([42f7268](https://github.com/swc-project/swc/commit/42f726873e6c9e813a750acbf6d818bd4e914e31)) diff --git a/Cargo.lock b/Cargo.lock index b342980e0d3..ba5f72ec658 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2947,7 +2947,7 @@ dependencies = [ [[package]] name = "swc_ecma_parser" -version = "0.86.0" +version = "0.86.1" dependencies = [ "either", "enum_kind", diff --git a/crates/swc_ecma_parser/Cargo.toml b/crates/swc_ecma_parser/Cargo.toml index b7cc7a5cc39..a125ad10dea 100644 --- a/crates/swc_ecma_parser/Cargo.toml +++ b/crates/swc_ecma_parser/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "examples/**/*.rs"] license = "Apache-2.0" name = "swc_ecma_parser" repository = "https://github.com/swc-project/swc.git" -version = "0.86.0" +version = "0.86.1" [package.metadata.docs.rs] all-features = true