From 54efb62138c54f523413fb6a6c00c57c81e81f54 Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Mon, 3 Aug 2020 12:00:24 +0200 Subject: [PATCH] Mark version 7.4.0 --- AUTHORS | 1 + acorn/CHANGELOG.md | 8 ++++++++ acorn/package.json | 2 +- acorn/src/index.js | 2 +- 4 files changed, 11 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 904f6182e..f73abdf0d 100644 --- a/AUTHORS +++ b/AUTHORS @@ -36,6 +36,7 @@ Ingvar Stepanyan Jackson Ray Hamilton Jesse McCarthy Jiaxing Wang +Joe Krump Joel Kemp Johannes Herr John-David Dalton diff --git a/acorn/CHANGELOG.md b/acorn/CHANGELOG.md index b728cb8f6..164fd27c6 100644 --- a/acorn/CHANGELOG.md +++ b/acorn/CHANGELOG.md @@ -1,3 +1,11 @@ +## 7.4.0 (2020-08-03) + +### New features + +Add support for logical assignment operators. + +Add support for numeric separators. + ## 7.3.1 (2020-06-11) ### Bug fixes diff --git a/acorn/package.json b/acorn/package.json index 18a1a3bf0..25bfa862b 100644 --- a/acorn/package.json +++ b/acorn/package.json @@ -5,7 +5,7 @@ "main": "dist/acorn.js", "types": "dist/acorn.d.ts", "module": "dist/acorn.mjs", - "version": "7.3.1", + "version": "7.4.0", "engines": {"node": ">=0.4.0"}, "maintainers": [ { diff --git a/acorn/src/index.js b/acorn/src/index.js index 549dcd226..eb118534b 100644 --- a/acorn/src/index.js +++ b/acorn/src/index.js @@ -31,7 +31,7 @@ import {isIdentifierChar, isIdentifierStart} from "./identifier" import {Token} from "./tokenize" import {isNewLine, lineBreak, lineBreakG, nonASCIIwhitespace} from "./whitespace" -export const version = "7.3.1" +export const version = "7.4.0" export { Parser, defaultOptions,