diff --git a/acorn/CHANGELOG.md b/acorn/CHANGELOG.md index 6489d0c39..5290676a0 100644 --- a/acorn/CHANGELOG.md +++ b/acorn/CHANGELOG.md @@ -1,3 +1,9 @@ +## 8.0.5 (2021-01-25) + +### Bug fixes + +Adjust package.json to work with Node 12.16.0 and 13.0-13.6. + ## 8.0.4 (2020-10-05) ### Bug fixes diff --git a/acorn/package.json b/acorn/package.json index 7b33bdb5a..f393f1bef 100644 --- a/acorn/package.json +++ b/acorn/package.json @@ -16,7 +16,7 @@ ], "./package.json": "./package.json" }, - "version": "8.0.4", + "version": "8.0.5", "engines": {"node": ">=0.4.0"}, "maintainers": [ { diff --git a/acorn/src/index.js b/acorn/src/index.js index 7f78011e9..8701eebce 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.0.4" +export const version = "8.0.5" export { Parser, defaultOptions,