Skip to content

Commit

Permalink
Mark version 7.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnh committed Sep 24, 2019
1 parent 5ef3c9a commit ea851e8
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
6 changes: 6 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
List of Acorn contributors. Updated before every release.

Adam Walsh
Adrian Heine
Adrian Rakovsky
Alistair Braidwood
Expand All @@ -18,8 +19,10 @@ Charles Hughes
Charmander
Chris McKnight
Conrad Irwin
Cyril Auburtin
Daniel Tschinder
David Bonnet
dnalborczyk
Domenico Matteo
ehmicky
Eugene Obrezkov
Expand All @@ -35,6 +38,7 @@ Jiaxing Wang
Joel Kemp
Johannes Herr
John-David Dalton
Jordan Gensler
Jordan Klassen
Jürg Lehni
Kai Cataldo
Expand Down Expand Up @@ -65,6 +69,7 @@ Oskar Schöldström
Paul Harper
Peter Rust
PlNG
Praveen N
Prayag Verma
ReadmeCritic
r-e-d
Expand All @@ -81,3 +86,4 @@ Toru Nagashima
Victor Homyakov
Wexpo Lyu
zsjforcn
龙腾道
10 changes: 10 additions & 0 deletions acorn/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion acorn/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
{
Expand Down
2 changes: 1 addition & 1 deletion acorn/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit ea851e8

Please sign in to comment.