Skip to content

Commit

Permalink
mammouth v0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
btwael committed Jul 17, 2013
1 parent 79893bf commit 2618018
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/
2 changes: 1 addition & 1 deletion bin/mammouth
Original file line number Diff line number Diff line change
Expand Up @@ -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] <file ...>')
.option('-c, --compile', '')
.option('-o, --output [DIR]', 'Write out all compiled PHP files into the specified directory. Use in conjunction with --compile', './');
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": "mammouth",
"version": "0.1.6",
"version": "0.1.7",
"description": "Unfancy PHP",
"author": {
"name": "Wael Amine Boutglay",
Expand Down
2 changes: 1 addition & 1 deletion src/compiler.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mammouth.VERSION = '0.1.6';
mammouth.VERSION = '0.1.7';
mammouth.compile = function(code) {
Tokens = mammouth.Tokens;
FunctionInAssignment = function(seq) {
Expand Down

0 comments on commit 2618018

Please sign in to comment.