Skip to content

Commit

Permalink
release 0.5.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Shahar Soel committed Dec 19, 2015
1 parent 13592b4 commit 4de4c08
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 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.5.9.zip
- package/chevrotain-binaries-0.5.9.tar.gz
- package/chevrotain-binaries-0.5.10.zip
- package/chevrotain-binaries-0.5.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.5.9",
"version": "0.5.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.5.9",
"version": "0.5.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.5.9 - 2015-12-12 */
/*! chevrotain - v0.5.10 - 2015-12-20 */
declare module chevrotain {
module lang {
class HashTable<V>{}
Expand Down
10 changes: 5 additions & 5 deletions release/chevrotain.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
}(this, function (_) {

/*! chevrotain - v0.5.9 - 2015-12-12 */
/*! chevrotain - v0.5.10 - 2015-12-20 */
var chevrotain;
(function (chevrotain) {
var lang;
Expand Down Expand Up @@ -2276,11 +2276,11 @@ var chevrotain;
if (_.isEmpty(chevrotain.first.first(currAlternative))) {
return {
message: ("Ambiguous empty alternative: <" + (currAltIdx + 1) + ">") +
(" in <OR" + currOr.occurrence + "> inside <" + topLevelRule.name + "> Rule.\n") +
"Only the last alternative is may be an empty alternative.",
(" in <OR" + currOr.occurrenceInParent + "> inside <" + topLevelRule.name + "> Rule.\n") +
"Only the last alternative may be an empty alternative.",
type: chevrotain.ParserDefinitionErrorType.NONE_LAST_EMPTY_ALT,
ruleName: topLevelRule.name,
occurrence: currOr.occurrence,
occurrence: currOr.occurrenceInParent,
alternative: currAltIdx + 1
};
}
Expand Down Expand Up @@ -3723,7 +3723,7 @@ var API = {};
/* istanbul ignore next */
if (!testMode) {
// semantic version
API.VERSION = "0.5.9";
API.VERSION = "0.5.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.5.9";
API.VERSION = "0.5.10";

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

0 comments on commit 4de4c08

Please sign in to comment.