Skip to content

Commit 6dc5374

Browse files
committed
Mark version 8.15.0
1 parent c8d954a commit 6dc5374

File tree

4 files changed

+19
-2
lines changed

4 files changed

+19
-2
lines changed

AUTHORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ Angelo
1212
Aparajita Fishman
1313
Arian Stolwijk
1414
Artem Govorov
15+
Augustin Mauroy
16+
baseballyama
1517
Benedikt Meurer
1618
Ben Page
1719
bojavou
@@ -42,6 +44,7 @@ Fabien LOISON
4244
Felix Maier
4345
fn ⌃ ⌥
4446
Forbes Lindesay
47+
Gabriel Miranda
4548
Gilad Peleg
4649
HonkingGoose
4750
Huáng Jùnliàng

acorn/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 8.15.0 (2025-06-08)
2+
3+
### New features
4+
5+
Support `using` and `await using` syntax.
6+
7+
The `AnyNode` type is now defined in such a way that plugins can extend it.
8+
9+
### Bug fixes
10+
11+
Fix an issue where the `bigint` property of literal nodes for non-decimal bigints had the wrong format.
12+
13+
The `acorn` CLI tool no longer crashes when emitting a tree that contains a bigint.
14+
115
## 8.14.1 (2025-03-05)
216

317
### 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.14.1",
19+
"version": "8.15.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
@@ -29,7 +29,7 @@ import {isIdentifierChar, isIdentifierStart} from "./identifier.js"
2929
import {Token} from "./tokenize.js"
3030
import {isNewLine, lineBreak, lineBreakG, nonASCIIwhitespace} from "./whitespace.js"
3131

32-
export const version = "8.14.1"
32+
export const version = "8.15.0"
3333
export {
3434
Parser,
3535
defaultOptions,

0 commit comments

Comments
 (0)