Skip to content

Commit

Permalink
Mark version 7.0.0
Browse files Browse the repository at this point in the history
marijnh committed Aug 13, 2019

Verified

This commit was signed with the committer’s verified signature.
1 parent 8f04fe8 commit 8c076c4
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions acorn/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 7.0.0 (2019-08-13)

### Breaking changes

Changes the node format for dynamic imports to use the `ImportExpression` node type, as defined in [ESTree](https://github.com/estree/estree/blob/master/es2020.md#importexpression).

Makes 10 (ES2019) the default value for the `ecmaVersion` option.

## 6.3.0 (2019-08-12)

### New features
2 changes: 1 addition & 1 deletion acorn/package.json
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
"homepage": "https://github.com/acornjs/acorn",
"main": "dist/acorn.js",
"module": "dist/acorn.mjs",
"version": "6.3.0",
"version": "7.0.0",
"engines": {"node": ">=0.4.0"},
"maintainers": [
{
2 changes: 1 addition & 1 deletion acorn/src/index.js
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ export {isIdentifierChar, isIdentifierStart} from "./identifier"
export {Token} from "./tokenize"
export {isNewLine, lineBreak, lineBreakG, nonASCIIwhitespace} from "./whitespace"

export const version = "6.3.0"
export const version = "7.0.0"

// The main exported interface (under `self.acorn` when in the
// browser) is a `parse` function that takes a code string and

0 comments on commit 8c076c4

Please sign in to comment.