Skip to content

Commit

Permalink
Mark version 8.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnh committed Oct 5, 2020
1 parent 848d14e commit 9d1d896
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions acorn/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion acorn/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
{
Expand Down
2 changes: 1 addition & 1 deletion acorn/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 9d1d896

Please sign in to comment.