Skip to content

Commit 910e62b

Browse files
committed
Mark version 5.7.3
1 parent 3442a80 commit 910e62b

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ Kevin Irish
4141
Kevin Kwok
4242
krator
4343
laosb
44+
luckyzeng
4445
Marek
4546
Marijn Haverbeke
4647
Martin Carlberg
@@ -63,6 +64,7 @@ PlNG
6364
Prayag Verma
6465
ReadmeCritic
6566
r-e-d
67+
Renée Kooi
6668
Richard Gibson
6769
Rich Harris
6870
Sebastian McKenzie

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 5.7.3 (2018-09-10)
2+
3+
### Bug fixes
4+
5+
Fix failure to tokenize regexps after expressions like `x.of`.
6+
7+
Better error message for unterminated template literals.
8+
19
## 5.7.2 (2018-08-24)
210

311
### Bug fixes

package.json

+1-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.2",
7+
"version": "5.7.3",
88
"engines": {
99
"node": ">=0.4.0"
1010
},

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.2"
40+
export const version = "5.7.3"
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)