Skip to content

Commit

Permalink
Mark version 8.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnh committed Dec 27, 2021
1 parent 101dd04 commit 05d560a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
4 changes: 4 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,14 @@ Charmander
Chris McKnight
Conrad Irwin
Cyril Auburtin
Daniel Nalborczyk
Daniel Tschinder
David Bonnet
daychongyang
dnalborczyk
Domenico Matteo
ehmicky
ericrannaud
Eugene Obrezkov
Fabien LOISON
Felix Maier
Expand Down Expand Up @@ -92,6 +95,7 @@ Sebastian McKenzie
Shahar Soel
Sheel Bedi
Simen Bekkhus
sosukesuzuki
susiwen
susiwen8
Teddy Katz
Expand Down
14 changes: 14 additions & 0 deletions acorn/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 8.7.0 (2021-12-27)

### New features

Support quoted export names.

Upgrade to Unicode 14.

Add support for Unicode 13 properties in regular expressions.

### Bug fixes

Use a loop to find line breaks, because the existing regexp search would overrun the end of the searched range and waste a lot of time in minified code.

## 8.6.0 (2021-11-18)

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion acorn/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
],
"./package.json": "./package.json"
},
"version": "8.6.0",
"version": "8.7.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.js"
import {Token} from "./tokenize.js"
import {isNewLine, lineBreak, lineBreakG, nonASCIIwhitespace} from "./whitespace.js"

export const version = "8.6.0"
export const version = "8.7.0"
export {
Parser,
defaultOptions,
Expand Down

0 comments on commit 05d560a

Please sign in to comment.