From 33039553192c607815a95dd9fc4d90c49eef9a98 Mon Sep 17 00:00:00 2001 From: satyr Date: Fri, 12 Jul 2013 05:49:05 +0900 Subject: [PATCH] complied with semvar for npm; closes #228 --- lib/coco.js | 2 +- package.json | 6 +++--- src/coco.co | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/coco.js b/lib/coco.js index b5584f2a0..b6558536b 100644 --- a/lib/coco.js +++ b/lib/coco.js @@ -21,7 +21,7 @@ parser.parseError = function(){ token = this.lexer.tokens[this.lexer.pos]; throw SyntaxError("unexpected " + lexer.pp(token) + " on line " + (token[2] + 1)); }; -exports.VERSION = '0.9.2b'; +exports.VERSION = '0.9.2-b'; exports.compile = function(code, options){ var e, that; try { diff --git a/package.json b/package.json index dc3b56b62..bcf3217c0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coco", - "version": "0.9.2b", + "version": "0.9.2-b", "description": "Unfancy CoffeeScript", "keywords": [ "language", @@ -8,8 +8,8 @@ "coffeescript", "javascript" ], - "author": "satyr (http://satyr.github.com)", - "homepage": "http://satyr.github.com/coco/", + "author": "satyr (http://satyr.github.io)", + "homepage": "http://satyr.github.io/coco/", "bugs": "https://github.com/satyr/coco/issues", "licenses": [ { diff --git a/src/coco.co b/src/coco.co index 6cc462360..8f7eebf52 100644 --- a/src/coco.co +++ b/src/coco.co @@ -20,7 +20,7 @@ parser import throw SyntaxError "unexpected #{lexer.pp token} on line #{token.2 + 1}" exports import - VERSION: \0.9.2b + VERSION: \0.9.2-b # Compiles a string of Coco code to JavaScript. compile: (code, options) ->