From e265eae3499b01b176e71bdab8bdb0fe042f3e3d Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Thu, 11 Jun 2020 12:23:14 +0200 Subject: [PATCH] Mark version 7.3.1 --- acorn/CHANGELOG.md | 6 ++++++ acorn/package.json | 2 +- acorn/src/index.js | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/acorn/CHANGELOG.md b/acorn/CHANGELOG.md index 519842c4f..b728cb8f6 100644 --- a/acorn/CHANGELOG.md +++ b/acorn/CHANGELOG.md @@ -1,3 +1,9 @@ +## 7.3.1 (2020-06-11) + +### Bug fixes + +Make the string in the `version` export match the actual library version. + ## 7.3.0 (2020-06-11) ### Bug fixes diff --git a/acorn/package.json b/acorn/package.json index 69f3f99ce..18a1a3bf0 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.0", + "version": "7.3.1", "engines": {"node": ">=0.4.0"}, "maintainers": [ { diff --git a/acorn/src/index.js b/acorn/src/index.js index f466a3b9f..549dcd226 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.1.0" +export const version = "7.3.1" export { Parser, defaultOptions,