diff --git a/bin/mammouth b/bin/mammouth index 8ed966f..a6eaeb0 100644 --- a/bin/mammouth +++ b/bin/mammouth @@ -4,7 +4,7 @@ var program = require('commander'), mammouth = require('../extras/mammouth-nodejs.js'), patch = require('path'); program - .version('0.1.8') + .version('0.1.9') .usage('[options] ') .option('-c, --compile', '') .option('-o, --output [DIR]', 'Write out all compiled PHP files into the specified directory. Use in conjunction with --compile', './'); diff --git a/extras/mammouth-nodejs.js b/extras/mammouth-nodejs.js index 65a0069..8f72f89 100644 --- a/extras/mammouth-nodejs.js +++ b/extras/mammouth-nodejs.js @@ -11601,7 +11601,7 @@ mammouth.parser = (function(){ NamespaceToken: 'namespace', ClassToken: 'class' }; -mammouth.VERSION = '0.1.8'; +mammouth.VERSION = '0.1.9'; mammouth.compile = function(code) { Tokens = mammouth.Tokens; FunctionInAssignment = function(seq) { diff --git a/extras/mammouth.js b/extras/mammouth.js index b74a96c..7f05211 100644 --- a/extras/mammouth.js +++ b/extras/mammouth.js @@ -11601,7 +11601,7 @@ mammouth.parser = (function(){ NamespaceToken: 'namespace', ClassToken: 'class' }; -mammouth.VERSION = '0.1.8'; +mammouth.VERSION = '0.1.9'; mammouth.compile = function(code) { Tokens = mammouth.Tokens; FunctionInAssignment = function(seq) { diff --git a/package.json b/package.json index 9aac666..0e41d74 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mammouth", - "version": "0.1.8", + "version": "0.1.9", "description": "Unfancy PHP", "author": { "name": "Wael Amine Boutglay", diff --git a/src/compiler.js b/src/compiler.js index 37b22c5..eaebc39 100644 --- a/src/compiler.js +++ b/src/compiler.js @@ -1,4 +1,4 @@ -mammouth.VERSION = '0.1.8'; +mammouth.VERSION = '0.1.9'; mammouth.compile = function(code) { Tokens = mammouth.Tokens; FunctionInAssignment = function(seq) {