diff --git a/CHANGELOG.md b/CHANGELOG.md index 1dd423de7e2..1511078f07c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -56,6 +56,9 @@ - **(es/minifier)** Implement more rules for `hoist_props` (#4262) ([1f5cac4](https://github.com/swc-project/swc/commit/1f5cac4d413bc8d035e137d74470469dfd886fa3)) +- **(es/parser)** Report more errors (#4244) ([674275c](https://github.com/swc-project/swc/commit/674275c8242df111bb9391da13b9869d7e6b6405)) + + - **(html)** Initialize (#4240) ([3e7872c](https://github.com/swc-project/swc/commit/3e7872c8de05ac46ef6ffb99f778ef5b64e47f1b)) diff --git a/Cargo.lock b/Cargo.lock index 8cc471561fb..43db22d3847 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3273,7 +3273,7 @@ dependencies = [ [[package]] name = "swc_ecma_parser" -version = "0.100.1" +version = "0.100.2" dependencies = [ "criterion", "either", diff --git a/crates/swc_ecma_parser/Cargo.toml b/crates/swc_ecma_parser/Cargo.toml index 5861ccca071..50345728cfd 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.100.1" +version = "0.100.2" [package.metadata.docs.rs] all-features = true