From 77c20fa2c2f490e646b67e6a0ff7e75fb54ab6c8 Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Sat, 20 Jul 2019 16:29:38 +0200 Subject: [PATCH] Mark version 6.2.1 --- acorn/CHANGELOG.md | 8 ++++++++ acorn/package.json | 2 +- acorn/src/index.js | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/acorn/CHANGELOG.md b/acorn/CHANGELOG.md index f94f23ccf..f2cd6a4b6 100644 --- a/acorn/CHANGELOG.md +++ b/acorn/CHANGELOG.md @@ -1,3 +1,11 @@ +## 6.2.1 (2019-07-21) + +### Bug fixes + +Fix bug causing Acorn to treat some characters as identifier characters that shouldn't be treated as such. + +Fix issue where setting the `allowReserved` option to `"never"` allowed reserved words in some circumstances. + ## 6.2.0 (2019-07-04) ### Bug fixes diff --git a/acorn/package.json b/acorn/package.json index 446e6b065..c6f812313 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": "6.2.0", + "version": "6.2.1", "engines": {"node": ">=0.4.0"}, "maintainers": [ { diff --git a/acorn/src/index.js b/acorn/src/index.js index e2209fa92..1fb6877ff 100644 --- a/acorn/src/index.js +++ b/acorn/src/index.js @@ -32,7 +32,7 @@ export {isIdentifierChar, isIdentifierStart} from "./identifier" export {Token} from "./tokenize" export {isNewLine, lineBreak, lineBreakG, nonASCIIwhitespace} from "./whitespace" -export const version = "6.2.0" +export const version = "6.2.1" // The main exported interface (under `self.acorn` when in the // browser) is a `parse` function that takes a code string and