Skip to content

Commit

Permalink
release 0.5.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Shahar Soel committed Jan 2, 2016
1 parent ff608d9 commit 79a4cf2
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -50,8 +50,8 @@ deploy:
api_key:
secure: DNq1wbqLPHVpJPDx9O89HZM+RJB6v2R7/wk8pok7Z8NT72kUWdvbqcThGhczPO4sZ8cUTJ3ergTCE8hs9mynlR/lX6932U4fj4+uICQL9+G+deBB/t2SNyTBllkE64WrJ9BKmQvIk/Chh7ZJOM0Fro3p2BIq3JsVnfYg1tZ3U5o=
file:
- package/chevrotain-binaries-0.5.11.zip
- package/chevrotain-binaries-0.5.11.tar.gz
- package/chevrotain-binaries-0.5.12.zip
- package/chevrotain-binaries-0.5.12.tar.gz
on:
tags : true
all_branches: true
Expand Down
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "chevrotain",
"version": "0.5.11",
"version": "0.5.12",
"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
@@ -1,6 +1,6 @@
{
"name": "chevrotain",
"version": "0.5.11",
"version": "0.5.12",
"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 readme.md
Expand Up @@ -57,7 +57,7 @@ any code generation phase.

## Documentation
* [Latest released version's HTML docs](http://sap.github.io/chevrotain/documentation)
* [Parsing DSL](http://sap.github.io/chevrotain/documentation/0_5_11/classes/chevrotain.parser.html#at_least_one)
* [Parsing DSL](http://sap.github.io/chevrotain/documentation/0_5_12/classes/chevrotain.parser.html#at_least_one)

* Annotated source code (dev version):
* [tokens_public.ts](https://github.com/SAP/chevrotain/blob/master/src/scan/tokens_public.ts)
Expand Down
2 changes: 1 addition & 1 deletion release/chevrotain.d.ts
@@ -1,4 +1,4 @@
/*! chevrotain - v0.5.11 - 2015-12-23 */
/*! chevrotain - v0.5.12 - 2016-01-02 */
declare module chevrotain {
module lang {
class HashTable<V>{}
Expand Down
4 changes: 2 additions & 2 deletions release/chevrotain.js
Expand Up @@ -15,7 +15,7 @@
}
}(this, function (_) {

/*! chevrotain - v0.5.11 - 2015-12-23 */
/*! chevrotain - v0.5.12 - 2016-01-02 */
var chevrotain;
(function (chevrotain) {
var lang;
Expand Down Expand Up @@ -3723,7 +3723,7 @@ var API = {};
/* istanbul ignore next */
if (!testMode) {
// semantic version
API.VERSION = "0.5.11";
API.VERSION = "0.5.12";
// runtime API
API.Parser = chevrotain.Parser;
API.Lexer = chevrotain.Lexer;
Expand Down
5 changes: 5 additions & 0 deletions release/chevrotain.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/api.ts
Expand Up @@ -12,7 +12,7 @@ let API:any = {}
/* istanbul ignore next */
if (!testMode) {
// semantic version
API.VERSION = "0.5.11";
API.VERSION = "0.5.12";

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

0 comments on commit 79a4cf2

Please sign in to comment.