Skip to content

Commit c09c7f5

Browse files
committed
Version 0.7.1
1 parent 8296983 commit c09c7f5

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

CHANGES

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,22 @@
1-
= HEAD / 22 Sep 2012
1+
= 0.7.1 / 6 Dec 2012
22

3+
* Handle empty templates gracefully. Fixes #265, #267, and #270.
34
* Cache partials by template, not by name. Fixes #257.
45
* Added Mustache.compileTokens to compile the output of Mustache.parse. Fixes
56
#258.
67

78
= 0.7.0 / 10 Sep 2012
89

910
* Rename Renderer => Writer.
10-
* Allow partials to be loaded dynamically using a callback (thanks @TiddoLangerak
11-
for the suggestion).
11+
* Allow partials to be loaded dynamically using a callback (thanks
12+
@TiddoLangerak for the suggestion).
1213
* Fixed a bug with higher-order sections that prevented them from being
1314
passed the raw text of the section from the original template.
1415
* More concise token format. Tokens also include start/end indices in the
1516
original template.
1617
* High-level API is consistent with the Writer API.
17-
* Allow partials to be passed to the pre-compiled function (thanks @fallenice).
18+
* Allow partials to be passed to the pre-compiled function (thanks
19+
@fallenice).
1820
* Don't use eval (thanks @cweider).
1921

2022
= 0.6.0 / 31 Aug 2012

mustache.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ var Mustache;
2020
var exports = {};
2121

2222
exports.name = "mustache.js";
23-
exports.version = "0.7.0";
23+
exports.version = "0.7.1";
2424
exports.tags = ["{{", "}}"];
2525

2626
exports.Scanner = Scanner;

mustache.js.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package >
33
<metadata>
44
<id>mustache.js</id>
5-
<version>0.7.0</version>
5+
<version>0.7.1</version>
66
<authors>mustache.js Authors</authors>
77
<licenseUrl>https://github.com/janl/mustache.js/blob/master/LICENSE</licenseUrl>
88
<projectUrl>http://mustache.github.com/</projectUrl>

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mustache",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "Logic-less {{mustache}} templates with JavaScript",
55
"author": "mustache.js Authors <http://github.com/janl/mustache.js>",
66
"keywords": ["mustache", "template", "templates", "ejs"],
@@ -9,7 +9,7 @@
99
"vows": "0.6.x"
1010
},
1111
"volo": {
12-
"url": "https://raw.github.com/janl/mustache.js/0.7.0/mustache.js"
12+
"url": "https://raw.github.com/janl/mustache.js/0.7.1/mustache.js"
1313
},
1414
"scripts": {
1515
"test": "vows --spec"

0 commit comments

Comments
 (0)