Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.3 #1190

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2015-06-16: Version 2.3.0

* Support ES6 generator (issue 1033)
* Improve parsing of regular expressions with `u` flag (issue 1179)

2015-04-17: Version 2.2.0

* Support ES6 import and export declarations (issue 1000)
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "esprima",
"version": "2.2.0",
"version": "2.3.0",
"main": "./esprima.js",
"scripts": [
"esprima.js"
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "esprima",
"version": "2.2.0",
"version": "2.3.0",
"main": "./esprima.js",
"scripts": [
"esprima.js"
Expand Down
2 changes: 1 addition & 1 deletion esprima.js
Original file line number Diff line number Diff line change
Expand Up @@ -5408,7 +5408,7 @@
}

// Sync with *.json manifests.
exports.version = '2.2.0';
exports.version = '2.3.0';

exports.tokenize = tokenize;

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"esparse": "./bin/esparse.js",
"esvalidate": "./bin/esvalidate.js"
},
"version": "2.2.0",
"version": "2.3.0",
"files": [
"bin",
"test/run.js",
Expand Down Expand Up @@ -36,9 +36,9 @@
},
"license": "BSD-2-Clause",
"devDependencies": {
"eslint": "~0.19.0",
"jscs": "~1.12.0",
"istanbul": "~0.3.7",
"eslint": "~0.23.0",
"jscs": "~1.13.1",
"istanbul": "~0.3.15",
"escomplex-js": "1.2.0",
"complexity-report": "~1.4.0",
"regenerate": "~0.6.2",
Expand Down