From c09c7f54a3be7c9e65bef71948d922311b49c8d7 Mon Sep 17 00:00:00 2001 From: Michael Jackson Date: Thu, 6 Dec 2012 08:20:46 -0800 Subject: [PATCH] Version 0.7.1 --- CHANGES | 10 ++++++---- mustache.js | 2 +- mustache.js.nuspec | 2 +- package.json | 4 ++-- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGES b/CHANGES index 436f7918f..15d7e7c74 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,6 @@ -= HEAD / 22 Sep 2012 += 0.7.1 / 6 Dec 2012 + * Handle empty templates gracefully. Fixes #265, #267, and #270. * Cache partials by template, not by name. Fixes #257. * Added Mustache.compileTokens to compile the output of Mustache.parse. Fixes #258. @@ -7,14 +8,15 @@ = 0.7.0 / 10 Sep 2012 * Rename Renderer => Writer. - * Allow partials to be loaded dynamically using a callback (thanks @TiddoLangerak - for the suggestion). + * Allow partials to be loaded dynamically using a callback (thanks + @TiddoLangerak for the suggestion). * Fixed a bug with higher-order sections that prevented them from being passed the raw text of the section from the original template. * More concise token format. Tokens also include start/end indices in the original template. * High-level API is consistent with the Writer API. - * Allow partials to be passed to the pre-compiled function (thanks @fallenice). + * Allow partials to be passed to the pre-compiled function (thanks + @fallenice). * Don't use eval (thanks @cweider). = 0.6.0 / 31 Aug 2012 diff --git a/mustache.js b/mustache.js index 16b742973..f3fdcdd14 100644 --- a/mustache.js +++ b/mustache.js @@ -20,7 +20,7 @@ var Mustache; var exports = {}; exports.name = "mustache.js"; - exports.version = "0.7.0"; + exports.version = "0.7.1"; exports.tags = ["{{", "}}"]; exports.Scanner = Scanner; diff --git a/mustache.js.nuspec b/mustache.js.nuspec index 1e5554bad..a385a4c77 100644 --- a/mustache.js.nuspec +++ b/mustache.js.nuspec @@ -2,7 +2,7 @@ mustache.js - 0.7.0 + 0.7.1 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 1303ec015..e9c709f5c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mustache", - "version": "0.7.0", + "version": "0.7.1", "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.7.0/mustache.js" + "url": "https://raw.github.com/janl/mustache.js/0.7.1/mustache.js" }, "scripts": { "test": "vows --spec"