diff --git a/AUTHORS b/AUTHORS index 8f3d9c809..0b979d6b4 100644 --- a/AUTHORS +++ b/AUTHORS @@ -31,6 +31,7 @@ Fabien LOISON Felix Maier Forbes Lindesay Gilad Peleg +HonkingGoose Huáng Jùnliàng impinball Ingvar Stepanyan @@ -67,6 +68,7 @@ Max Zerzouri Mihai Bazon Mike Rennie naoh +Nauja Nicholas C. Zakas Nick Fitzgerald Olivier Thomann @@ -102,6 +104,7 @@ Victor Homyakov Vladislav Tupikin Wexpo Lyu yosuke ota +Žiga Zupančič zsjforcn 星灵 龙腾道 diff --git a/acorn/CHANGELOG.md b/acorn/CHANGELOG.md index 84c33f72c..f3d076ed9 100644 --- a/acorn/CHANGELOG.md +++ b/acorn/CHANGELOG.md @@ -1,3 +1,9 @@ +## 8.4.0 (2021-06-11) + +### New features + +A new option, `allowSuperOutsideMethod`, can be used to suppress the error when `super` is used in the wrong context. + ## 8.3.0 (2021-05-31) ### New features diff --git a/acorn/package.json b/acorn/package.json index 971407630..c156155e2 100644 --- a/acorn/package.json +++ b/acorn/package.json @@ -16,7 +16,7 @@ ], "./package.json": "./package.json" }, - "version": "8.3.0", + "version": "8.4.0", "engines": {"node": ">=0.4.0"}, "maintainers": [ { diff --git a/acorn/src/index.js b/acorn/src/index.js index 7564667ab..6d90bd0a5 100644 --- a/acorn/src/index.js +++ b/acorn/src/index.js @@ -31,7 +31,7 @@ import {isIdentifierChar, isIdentifierStart} from "./identifier.js" import {Token} from "./tokenize.js" import {isNewLine, lineBreak, lineBreakG, nonASCIIwhitespace} from "./whitespace.js" -export const version = "8.3.0" +export const version = "8.4.0" export { Parser, defaultOptions,