Skip to content

Commit 9d1d896

Browse files
committed
Mark version 8.0.4
1 parent 848d14e commit 9d1d896

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

acorn/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 8.0.4 (2020-10-05)
2+
3+
### Bug fixes
4+
5+
Make `await x ** y` an error, following the spec.
6+
7+
Fix potentially exponential regular expression.
8+
19
## 8.0.3 (2020-10-02)
210

311
### Bug fixes

acorn/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"import": "./dist/acorn.mjs",
1010
"require": "./dist/acorn.js"
1111
},
12-
"version": "8.0.3",
12+
"version": "8.0.4",
1313
"engines": {"node": ">=0.4.0"},
1414
"maintainers": [
1515
{

acorn/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import {isIdentifierChar, isIdentifierStart} from "./identifier.js"
3131
import {Token} from "./tokenize.js"
3232
import {isNewLine, lineBreak, lineBreakG, nonASCIIwhitespace} from "./whitespace.js"
3333

34-
export const version = "8.0.3"
34+
export const version = "8.0.4"
3535
export {
3636
Parser,
3737
defaultOptions,

0 commit comments

Comments
 (0)