Skip to content

Commit 18ae3fc

Browse files
committed
Mark version 8.8.0
1 parent b2ecf7a commit 18ae3fc

3 files changed

Lines changed: 14 additions & 2 deletions

File tree

acorn/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 8.8.0 (2022-07-21)
2+
3+
### Bug fixes
4+
5+
Allow parentheses around spread args in destructuring object assignment.
6+
7+
Fix an issue where the tree contained `directive` properties in when parsing with a language version that doesn't support them.
8+
9+
### New features
10+
11+
Support hashbang comments by default in ECMAScript 2023 and later.
12+
113
## 8.7.1 (2021-04-26)
214

315
### Bug fixes

acorn/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
],
1717
"./package.json": "./package.json"
1818
},
19-
"version": "8.7.1",
19+
"version": "8.8.0",
2020
"engines": {
2121
"node": ">=0.4.0"
2222
},

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.7.1"
34+
export const version = "8.8.0"
3535
export {
3636
Parser,
3737
defaultOptions,

0 commit comments

Comments
 (0)