Skip to content

Commit

Permalink
Mark version 8.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnh committed Apr 29, 2021
1 parent cb7fb45 commit 073ad31
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions acorn/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 8.2.2 (2021-04-29)

### Bug fixes

Fix a bug where a class field initialized to an async arrow function wouldn't allow await inside it. Same issue existed for generator arrow functions with yield.

## 8.2.1 (2021-04-24)

### 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 @@ -16,7 +16,7 @@
],
"./package.json": "./package.json"
},
"version": "8.2.1",
"version": "8.2.2",
"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.2.1"
export const version = "8.2.2"
export {
Parser,
defaultOptions,
Expand Down

0 comments on commit 073ad31

Please sign in to comment.