Skip to content

Commit e265eae

Browse files
committed
Mark version 7.3.1
1 parent 50fd1bc commit e265eae

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+
## 7.3.1 (2020-06-11)
2+
3+
### Bug fixes
4+
5+
Make the string in the `version` export match the actual library version.
6+
17
## 7.3.0 (2020-06-11)
28

39
### Bug fixes

Diff for: acorn/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"main": "dist/acorn.js",
66
"types": "dist/acorn.d.ts",
77
"module": "dist/acorn.mjs",
8-
"version": "7.3.0",
8+
"version": "7.3.1",
99
"engines": {"node": ">=0.4.0"},
1010
"maintainers": [
1111
{

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 = "7.1.0"
34+
export const version = "7.3.1"
3535
export {
3636
Parser,
3737
defaultOptions,

0 commit comments

Comments
 (0)