From 9d1d896924baa2f85fde24ae9b3374bccf927a45 Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Mon, 5 Oct 2020 08:17:28 +0200 Subject: [PATCH] Mark version 8.0.4 --- acorn/CHANGELOG.md | 8 ++++++++ acorn/package.json | 2 +- acorn/src/index.js | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/acorn/CHANGELOG.md b/acorn/CHANGELOG.md index be65cb790..6489d0c39 100644 --- a/acorn/CHANGELOG.md +++ b/acorn/CHANGELOG.md @@ -1,3 +1,11 @@ +## 8.0.4 (2020-10-05) + +### Bug fixes + +Make `await x ** y` an error, following the spec. + +Fix potentially exponential regular expression. + ## 8.0.3 (2020-10-02) ### Bug fixes diff --git a/acorn/package.json b/acorn/package.json index 39f17fc76..bc46c81c6 100644 --- a/acorn/package.json +++ b/acorn/package.json @@ -9,7 +9,7 @@ "import": "./dist/acorn.mjs", "require": "./dist/acorn.js" }, - "version": "8.0.3", + "version": "8.0.4", "engines": {"node": ">=0.4.0"}, "maintainers": [ { diff --git a/acorn/src/index.js b/acorn/src/index.js index 46c94316a..7f78011e9 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.3" +export const version = "8.0.4" export { Parser, defaultOptions,