Skip to content

Commit 54efb62

Browse files
committed
Mark version 7.4.0
1 parent 856b720 commit 54efb62

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ Ingvar Stepanyan
3636
Jackson Ray Hamilton
3737
Jesse McCarthy
3838
Jiaxing Wang
39+
Joe Krump
3940
Joel Kemp
4041
Johannes Herr
4142
John-David Dalton

acorn/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 7.4.0 (2020-08-03)
2+
3+
### New features
4+
5+
Add support for logical assignment operators.
6+
7+
Add support for numeric separators.
8+
19
## 7.3.1 (2020-06-11)
210

311
### Bug fixes

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.1",
8+
"version": "7.4.0",
99
"engines": {"node": ">=0.4.0"},
1010
"maintainers": [
1111
{

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

0 commit comments

Comments
 (0)