Skip to content

Commit 2c59dd3

Browse files
committed
Mark version 8.5.0
1 parent 56997f8 commit 2c59dd3

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

acorn/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 8.5.0 (2021-09-06)
2+
3+
### Bug fixes
4+
5+
Improve context-dependent tokenization in a number of corner cases.
6+
7+
Fix location tracking after a 0x2028 or 0x2029 character in a string literal (which before did not increase the line number).
8+
9+
Fix an issue where arrow function bodies in for loop context would inappropriately consume `in` operators.
10+
11+
Fix wrong end locations stored on SequenceExpression nodes.
12+
13+
Implement restriction that `for`/`of` loop LHS can't start with `let`.
14+
15+
### New features
16+
17+
Add support for ES2022 class static blocks.
18+
19+
Allow multiple input files to be passed to the CLI tool.
20+
121
## 8.4.1 (2021-06-24)
222

323
### 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.4.1",
19+
"version": "8.5.0",
2020
"engines": {"node": ">=0.4.0"},
2121
"maintainers": [
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.4.1"
34+
export const version = "8.5.0"
3535
export {
3636
Parser,
3737
defaultOptions,

0 commit comments

Comments
 (0)