Skip to content

Commit

Permalink
release 0.4.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Shahar Soel committed Aug 10, 2015
1 parent 7563105 commit 262cf20
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ deploy:
api_key:
secure: DNq1wbqLPHVpJPDx9O89HZM+RJB6v2R7/wk8pok7Z8NT72kUWdvbqcThGhczPO4sZ8cUTJ3ergTCE8hs9mynlR/lX6932U4fj4+uICQL9+G+deBB/t2SNyTBllkE64WrJ9BKmQvIk/Chh7ZJOM0Fro3p2BIq3JsVnfYg1tZ3U5o=
file:
- package/chevrotain-binaries-0.4.9.zip
- package/chevrotain-binaries-0.4.9.tar.gz
- package/chevrotain-binaries-0.4.10.zip
- package/chevrotain-binaries-0.4.10.tar.gz
on:
tags : true
all_branches: true
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": "chevrotain",
"version": "0.4.9",
"version": "0.4.10",
"description": "Chevrotain is a high performance fault Tolerant Javascript parsing DSL for building recursive decent parsers",
"main": "release/chevrotain.js",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chevrotain",
"version": "0.4.9",
"version": "0.4.10",
"description": "Chevrotain is a high performance fault Tolerant Javascript parsing DSL for building recursive decent parsers",
"keywords": [
"parser",
Expand Down
2 changes: 1 addition & 1 deletion release/chevrotain.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! chevrotain - v0.4.9 - 2015-07-26 */
/*! chevrotain - v0.4.10 - 2015-08-11 */
declare module chevrotain {
module lang {
class HashTable<V>{}
Expand Down
8 changes: 5 additions & 3 deletions release/chevrotain.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
}(this, function (_) {

/*! chevrotain - v0.4.9 - 2015-07-26 */
/*! chevrotain - v0.4.10 - 2015-08-11 */
var chevrotain;
(function (chevrotain) {
var lang;
Expand Down Expand Up @@ -2912,7 +2912,9 @@ var chevrotain;
}
if (lookAheadFunc.call(this)) {
action.call(this);
this.MANY(lookAheadFunc, action);
while (lookAheadFunc.call(this)) {
action.call(this);
}
}
else {
throw this.SAVE_ERROR(new exceptions.EarlyExitException("expecting at least one: " + errMsg, this.NEXT_TOKEN()));
Expand Down Expand Up @@ -3089,7 +3091,7 @@ var API = {};
/* istanbul ignore next */
if (!testMode) {
// semantic version
API.VERSION = "0.4.9";
API.VERSION = "0.4.10";
// runtime API
API.Parser = chevrotain.Parser;
API.Lexer = chevrotain.Lexer;
Expand Down
2 changes: 1 addition & 1 deletion src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let API:any = {}
/* istanbul ignore next */
if (!testMode) {
// semantic version
API.VERSION = "0.4.9";
API.VERSION = "0.4.10";

// runtime API
API.Parser = chevrotain.Parser
Expand Down

0 comments on commit 262cf20

Please sign in to comment.