Skip to content

Commit

Permalink
Version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mjackson committed Aug 31, 2012
1 parent bf61bf6 commit f5d18ca
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions 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).
2 changes: 1 addition & 1 deletion mustache.js
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion mustache.js.nuspec
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>mustache.js</id>
<version>0.5.2</version>
<version>0.6.0</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
@@ -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 <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.5.2/mustache.js"
"url": "https://raw.github.com/janl/mustache.js/0.6.0/mustache.js"
},
"scripts": {
"test": "vows --spec"
Expand Down

0 comments on commit f5d18ca

Please sign in to comment.