Skip to content

Commit 932591b

Browse files
committed
Mark version 8.6.0
1 parent 567c8e9 commit 932591b

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
lines changed

AUTHORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ ehmicky
2929
Eugene Obrezkov
3030
Fabien LOISON
3131
Felix Maier
32+
fn ⌃ ⌥
3233
Forbes Lindesay
3334
Gilad Peleg
3435
HonkingGoose
@@ -106,5 +107,7 @@ Wexpo Lyu
106107
yosuke ota
107108
Žiga Zupančič
108109
zsjforcn
110+
就是喜欢陈粒
111+
成仕伟
109112
星灵
110113
龙腾道

acorn/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 8.6.0 (2021-11-18)
2+
3+
### Bug fixes
4+
5+
Fix a bug where an object literal with multiple `__proto__` properties would incorrectly be accepted if a later property value held an assigment.
6+
7+
### New features
8+
9+
Support class private fields with the `in` operator.
10+
111
## 8.5.0 (2021-09-06)
212

313
### 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.5.0",
19+
"version": "8.6.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.5.0"
34+
export const version = "8.6.0"
3535
export {
3636
Parser,
3737
defaultOptions,

0 commit comments

Comments
 (0)