diff --git a/acorn/CHANGELOG.md b/acorn/CHANGELOG.md index 93837a91a..b7b232595 100644 --- a/acorn/CHANGELOG.md +++ b/acorn/CHANGELOG.md @@ -1,3 +1,19 @@ +## 7.2.0 (2020-05-09) + +### Bug fixes + +Fix precedence issue in parsing of async arrow functions. + +### New features + +Add support for nullish coalescing. + +Add support for `import.meta`. + +Support `export * as ...` syntax. + +Upgrade to Unicode 13. + ## 6.4.1 (2020-03-09) ### Bug fixes diff --git a/acorn/package.json b/acorn/package.json index 6a8f03607..39179b6c3 100644 --- a/acorn/package.json +++ b/acorn/package.json @@ -5,7 +5,7 @@ "main": "dist/acorn.js", "types": "dist/acorn.d.ts", "module": "dist/acorn.mjs", - "version": "7.1.1", + "version": "7.2.0", "engines": {"node": ">=0.4.0"}, "maintainers": [ { diff --git a/package.json b/package.json index c419996c1..760497c9b 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "eslint-plugin-standard": "^3.0.1", "rollup": "^1.7.0", "rollup-plugin-buble": "^0.19.0", - "test262": "git+https://github.com/tc39/test262.git#09380a4ae412e986ea39eb7163f5a6b3e5b04bbc", + "test262": "git+https://github.com/tc39/test262.git#2c432e35b261a2474f122631b02eff3e031de383", "test262-parser-runner": "^0.5.0", "test262-stream": "^1.2.1", "unicode-13.0.0": "^0.8.0"