From f5d18caee285aeba3e46563fafc2d74684f569d5 Mon Sep 17 00:00:00 2001 From: Michael Jackson Date: Fri, 31 Aug 2012 15:42:39 -0700 Subject: [PATCH] Version 0.6.0 --- CHANGES | 5 +++-- mustache.js | 2 +- mustache.js.nuspec | 2 +- package.json | 4 ++-- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGES b/CHANGES index b7e83549c..953420c41 100644 --- a/CHANGES +++ b/CHANGES @@ -1,7 +1,8 @@ -= HEAD += 0.6.0 / 31 Aug 2012 * Use JavaScript's definition of falsy when determining whether to render an inverted section or not. Issue #186. * Use Mustache.escape to escape values inside {{}}. This function may be reassigned to alter the default escaping behavior. Issue #244. - * Fixed a bug that clashed with QUnit. Thanks @kannix. + * Fixed a bug that clashed with QUnit (thanks @kannix). + * Added volo support (thanks @guybedford). diff --git a/mustache.js b/mustache.js index 6528281ee..579a95900 100644 --- a/mustache.js +++ b/mustache.js @@ -19,7 +19,7 @@ var Mustache; var exports = {}; exports.name = "mustache.js"; - exports.version = "0.5.2"; + exports.version = "0.6.0"; exports.tags = ["{{", "}}"]; exports.parse = parse; diff --git a/mustache.js.nuspec b/mustache.js.nuspec index 67c8042cb..138014d20 100644 --- a/mustache.js.nuspec +++ b/mustache.js.nuspec @@ -2,7 +2,7 @@ mustache.js - 0.5.2 + 0.6.0 mustache.js Authors https://github.com/janl/mustache.js/blob/master/LICENSE http://mustache.github.com/ diff --git a/package.json b/package.json index 804a15d33..83469cb58 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mustache", - "version": "0.5.2", + "version": "0.6.0", "description": "Logic-less {{mustache}} templates with JavaScript", "author": "mustache.js Authors ", "keywords": ["mustache", "template", "templates", "ejs"], @@ -9,7 +9,7 @@ "vows": "0.6.x" }, "volo": { - "url": "https://raw.github.com/janl/mustache.js/0.5.2/mustache.js" + "url": "https://raw.github.com/janl/mustache.js/0.6.0/mustache.js" }, "scripts": { "test": "vows --spec"