Skip to content

Commit df0cf1a

Browse files
committed
Mark version 6.4.0
1 parent 5303412 commit df0cf1a

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

Diff for: acorn/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 6.4.0 (2019-11-26)
2+
3+
### New features
4+
5+
Add a static `acorn` property to the `Parser` class that contains the entire module interface, to allow plugins to access the instance of the library that they are acting on.
6+
17
## 6.3.0 (2019-08-12)
28

39
### New features

Diff for: acorn/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.mjs",
7-
"version": "6.3.0",
7+
"version": "6.4.0",
88
"engines": {"node": ">=0.4.0"},
99
"maintainers": [
1010
{

Diff for: acorn/src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import {isIdentifierChar, isIdentifierStart} from "./identifier"
3131
import {Token} from "./tokenize"
3232
import {isNewLine, lineBreak, lineBreakG, nonASCIIwhitespace} from "./whitespace"
3333

34-
export const version = "6.3.0"
34+
export const version = "6.4.0"
3535
export {
3636
Parser,
3737
defaultOptions,

0 commit comments

Comments
 (0)