diff --git a/README.md b/README.md index d4675b1..42b98b5 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Mammouth is a small language that compiles into PHP, inspired by CoffeeScript. It's compiled to PHP codes/files that you can run in your PHP server. For documentation, usage, and examples, see: - http://btwael.github.io/mammouth + http://mammouth.wamalaka.com/ To suggest a feature, report a bug, or general discussion: http://github.com/btwael/mammouth/issues/ \ No newline at end of file diff --git a/bin/mammouth b/bin/mammouth index 8bcf975..50e3a93 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.6') + .version('0.1.7') .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/package.json b/package.json index 12d8f6e..a3c12da 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mammouth", - "version": "0.1.6", + "version": "0.1.7", "description": "Unfancy PHP", "author": { "name": "Wael Amine Boutglay", diff --git a/src/compiler.js b/src/compiler.js index 59f8636..70881b3 100644 --- a/src/compiler.js +++ b/src/compiler.js @@ -1,4 +1,4 @@ -mammouth.VERSION = '0.1.6'; +mammouth.VERSION = '0.1.7'; mammouth.compile = function(code) { Tokens = mammouth.Tokens; FunctionInAssignment = function(seq) {