Skip to content

Commit 04bdf9a

Browse files
committed
Mark version 8.7.1
1 parent b4b3122 commit 04bdf9a

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

AUTHORS

+4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ Ben Page
1515
Boopesh Mahendran
1616
Bradley Heinz
1717
Brandon Mills
18+
Brett Zamir
1819
Brian Donovan
20+
bvanjoi
1921
Charles Hughes
2022
Charmander
2123
Chris McKnight
@@ -40,6 +42,7 @@ Huáng Jùnliàng
4042
impinball
4143
Ingvar Stepanyan
4244
Jackson Ray Hamilton
45+
Jan Štola
4346
Jesse McCarthy
4447
Jiaxing Wang
4548
Joe Krump
@@ -69,6 +72,7 @@ Mathieu 'p01' Henri
6972
Matthew Bastien
7073
Max Schaefer
7174
Max Zerzouri
75+
mickey-gs
7276
Mihai Bazon
7377
Mike Rennie
7478
naoh

acorn/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 8.7.1 (2021-04-26)
2+
3+
### Bug fixes
4+
5+
Stop handling `"use strict"` directives in ECMAScript versions before 5.
6+
7+
Fix an issue where duplicate quoted export names in `export *` syntax were incorrectly checked.
8+
9+
Add missing type for `tokTypes`.
10+
111
## 8.7.0 (2021-12-27)
212

313
### New features

acorn/package.json

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

acorn/src/index.js

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

0 commit comments

Comments
 (0)