Skip to content

Commit

Permalink
Version 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mjackson committed Dec 6, 2012
1 parent 8296983 commit c09c7f5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
10 changes: 6 additions & 4 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
= 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.

= 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
Expand Down
2 changes: 1 addition & 1 deletion mustache.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion mustache.js.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>mustache.js</id>
<version>0.7.0</version>
<version>0.7.1</version>
<authors>mustache.js Authors</authors>
<licenseUrl>https://github.com/janl/mustache.js/blob/master/LICENSE</licenseUrl>
<projectUrl>http://mustache.github.com/</projectUrl>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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 <http://github.com/janl/mustache.js>",
"keywords": ["mustache", "template", "templates", "ejs"],
Expand All @@ -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"
Expand Down

0 comments on commit c09c7f5

Please sign in to comment.