Skip to content

Commit

Permalink
Mark version 8.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnh committed Jan 23, 2023
1 parent 75faae6 commit 2282d4b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
2 changes: 2 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Bradley Heinz
Brandon Mills
Brett Zamir
Brian Donovan
Brian Orora
bvanjoi
Charles Hughes
Charmander
Expand All @@ -31,6 +32,7 @@ daychongyang
dnalborczyk
Domenico Matteo
ehmicky
elixiao
ericrannaud
Eugene Obrezkov
Fabien LOISON
Expand Down
10 changes: 10 additions & 0 deletions acorn/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 8.8.2 (2023-01-23)

### Bug fixes

Fix a bug that caused `allowHashBang` to be set to false when not provided, even with `ecmaVersion >= 14`.

Fix an exception when passing no option object to `parse` or `new Parser`.

Fix incorrect parse error on `if (0) let\n[astral identifier char]`.

## 8.8.1 (2022-10-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.8.1",
"version": "8.8.2",
"engines": {
"node": ">=0.4.0"
},
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.8.1"
export const version = "8.8.2"
export {
Parser,
defaultOptions,
Expand Down

0 comments on commit 2282d4b

Please sign in to comment.