diff --git a/.travis.yml b/.travis.yml index 72cd4d73b..7b7019711 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,8 +15,8 @@ deploy: api_key: secure: DNq1wbqLPHVpJPDx9O89HZM+RJB6v2R7/wk8pok7Z8NT72kUWdvbqcThGhczPO4sZ8cUTJ3ergTCE8hs9mynlR/lX6932U4fj4+uICQL9+G+deBB/t2SNyTBllkE64WrJ9BKmQvIk/Chh7ZJOM0Fro3p2BIq3JsVnfYg1tZ3U5o= file: - - package/chevrotain-binaries-0.4.4.zip - - package/chevrotain-binaries-0.4.4.tar.gz + - package/chevrotain-binaries-0.4.5.zip + - package/chevrotain-binaries-0.4.5.tar.gz on: tags : true all_branches: true diff --git a/bower.json b/bower.json index 1d20228b3..0c1cbe768 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "chevrotain", - "version": "0.4.4", + "version": "0.4.5", "description": "Chevrotain is a high performance fault Tolerant Javascript parsing DSL for building recursive decent parsers", "main": "release/chevrotain.js", "dependencies": { diff --git a/package.json b/package.json index 89b88b06a..7c313752d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "chevrotain", - "version": "0.4.4", + "version": "0.4.5", "description": "Chevrotain is a high performance fault Tolerant Javascript parsing DSL for building recursive decent parsers", "keywords": [ "parser", diff --git a/release/chevrotain.d.ts b/release/chevrotain.d.ts index 960c7dcd7..a3c17f3b7 100644 --- a/release/chevrotain.d.ts +++ b/release/chevrotain.d.ts @@ -1,4 +1,4 @@ -/*! chevrotain - v0.4.4 - 2015-06-29 */ +/*! chevrotain - v0.4.5 - 2015-07-11 */ declare module chevrotain { module lang { class HashTable{} diff --git a/release/chevrotain.js b/release/chevrotain.js index c453e33d5..967854bd7 100644 --- a/release/chevrotain.js +++ b/release/chevrotain.js @@ -15,7 +15,7 @@ } }(this, function (_) { -/*! chevrotain - v0.4.4 - 2015-06-29 */ +/*! chevrotain - v0.4.5 - 2015-07-11 */ var chevrotain; (function (chevrotain) { var lang; @@ -380,7 +380,7 @@ var chevrotain; Lexer.SKIPPED = { description: "This marks a skipped Token pattern, this means each token identified by it will" + "be consumed and then throw into oblivion, this can be used to for example: skip whitespace." }; - Lexer.NA = /NOT_APPLICIABLE/; + Lexer.NA = /NOT_APPLICABLE/; return Lexer; })(); chevrotain.Lexer = Lexer; @@ -2942,6 +2942,8 @@ var testMode = (typeof global === "object" && global.CHEV_TEST_MODE) || (typeof var API = {}; /* istanbul ignore next */ if (!testMode) { + // semantic version + API.VERSION = "0.4.5"; // runtime API API.Parser = chevrotain.Parser; API.Lexer = chevrotain.Lexer;