Skip to content

Commit 12ad116

Browse files
committed
Mark version 8.12.1
1 parent c26b84a commit 12ad116

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

acorn/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 8.12.1 (2024-07-03)
2+
3+
### Bug fixes
4+
5+
Fix a regression that caused Acorn to no longer run on Node versions <8.10.
6+
17
## 8.12.0 (2024-06-14)
28

39
### New features
@@ -17,7 +23,7 @@ Mark the `Parser` constructor as protected, not private, so plugins can extend i
1723
Fix a bug where some invalid `delete` expressions were let through when the operand was parenthesized and `preserveParens` was enabled.
1824

1925
Properly normalize line endings in raw strings of invalid template tokens.
20-
26+
2127
Properly track line numbers for escaped newlines in strings.
2228

2329
Fix a bug that broke line number accounting after a template literal with invalid escape sequences.

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.12.0",
19+
"version": "8.12.1",
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.12.0"
34+
export const version = "8.12.1"
3535
export {
3636
Parser,
3737
defaultOptions,

0 commit comments

Comments
 (0)