Skip to content

Commit ac6decb

Browse files
committed
Mark version 6.3.0
1 parent 7e9817d commit ac6decb

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

acorn/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 6.3.0 (2019-08-12)
2+
3+
### New features
4+
5+
`sourceType: "module"` can now be used even when `ecmaVersion` is less than 6, to parse module-style code that otherwise conforms to an older standard.
6+
17
## 6.2.1 (2019-07-21)
28

39
### Bug fixes

acorn/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"homepage": "https://github.com/acornjs/acorn",
55
"main": "dist/acorn.js",
66
"module": "dist/acorn.mjs",
7-
"version": "6.2.1",
7+
"version": "6.3.0",
88
"engines": {"node": ">=0.4.0"},
99
"maintainers": [
1010
{

acorn/src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export {isIdentifierChar, isIdentifierStart} from "./identifier"
3232
export {Token} from "./tokenize"
3333
export {isNewLine, lineBreak, lineBreakG, nonASCIIwhitespace} from "./whitespace"
3434

35-
export const version = "6.2.1"
35+
export const version = "6.3.0"
3636

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

0 commit comments

Comments
 (0)