Skip to content

Commit 95ca55c

Browse files
committed
Mark version 5.7.2
1 parent bba80ab commit 95ca55c

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

Diff for: CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 5.7.2 (2018-08-24)
2+
3+
### Bug fixes
4+
5+
Properly handle `allowAwaitOutsideFunction` in for statements.
6+
7+
Treat function declarations at the top level of modules like let bindings.
8+
9+
Don't allow async function declarations as the only statement under a label.
10+
111
## 5.7.1 (2018-06-15)
212

313
### Bug fixes

Diff for: package.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"homepage": "https://github.com/acornjs/acorn",
55
"main": "dist/acorn.js",
66
"module": "dist/acorn.es.js",
7-
"version": "5.7.1",
7+
"version": "5.7.2",
88
"engines": {
99
"node": ">=0.4.0"
1010
},
@@ -18,6 +18,10 @@
1818
"name": "Ingvar Stepanyan",
1919
"email": "[email protected]",
2020
"web": "http://rreverser.com/"
21+
},
22+
{
23+
"name": "Adrian Heine",
24+
"email": "http://adrianheine.de"
2125
}
2226
],
2327
"repository": {

Diff for: src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export {isIdentifierChar, isIdentifierStart} from "./identifier"
3737
export {Token} from "./tokenize"
3838
export {isNewLine, lineBreak, lineBreakG, nonASCIIwhitespace} from "./whitespace"
3939

40-
export const version = "5.7.1"
40+
export const version = "5.7.2"
4141

4242
// The main exported interface (under `self.acorn` when in the
4343
// browser) is a `parse` function that takes a code string and

0 commit comments

Comments
 (0)