From ea851e8cedb691dcc312fb6f1f0d813747a378ef Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Tue, 24 Sep 2019 08:33:13 +0200 Subject: [PATCH] Mark version 7.1.0 --- AUTHORS | 6 ++++++ acorn/CHANGELOG.md | 10 ++++++++++ acorn/package.json | 2 +- acorn/src/index.js | 2 +- 4 files changed, 18 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 0fec871d9..c7a0fb8a0 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,5 +1,6 @@ List of Acorn contributors. Updated before every release. +Adam Walsh Adrian Heine Adrian Rakovsky Alistair Braidwood @@ -18,8 +19,10 @@ Charles Hughes Charmander Chris McKnight Conrad Irwin +Cyril Auburtin Daniel Tschinder David Bonnet +dnalborczyk Domenico Matteo ehmicky Eugene Obrezkov @@ -35,6 +38,7 @@ Jiaxing Wang Joel Kemp Johannes Herr John-David Dalton +Jordan Gensler Jordan Klassen Jürg Lehni Kai Cataldo @@ -65,6 +69,7 @@ Oskar Schöldström Paul Harper Peter Rust PlNG +Praveen N Prayag Verma ReadmeCritic r-e-d @@ -81,3 +86,4 @@ Toru Nagashima Victor Homyakov Wexpo Lyu zsjforcn +龙腾道 diff --git a/acorn/CHANGELOG.md b/acorn/CHANGELOG.md index 8ec28c9e4..e893c221a 100644 --- a/acorn/CHANGELOG.md +++ b/acorn/CHANGELOG.md @@ -1,3 +1,13 @@ +## 7.1.0 (2019-09-24) + +### Bug fixes + +Disallow trailing object literal commas when ecmaVersion is less than 5. + +### New features + +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. + ## 7.0.0 (2019-08-13) ### Breaking changes diff --git a/acorn/package.json b/acorn/package.json index 4c4968f41..b9ff2b366 100644 --- a/acorn/package.json +++ b/acorn/package.json @@ -4,7 +4,7 @@ "homepage": "https://github.com/acornjs/acorn", "main": "dist/acorn.js", "module": "dist/acorn.mjs", - "version": "7.0.0", + "version": "7.1.0", "engines": {"node": ">=0.4.0"}, "maintainers": [ { diff --git a/acorn/src/index.js b/acorn/src/index.js index 264e9e5af..f466a3b9f 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.0.0" +export const version = "7.1.0" export { Parser, defaultOptions,