From ab4fe8bcee145a3ee49fad128c1dba7dff1e949b Mon Sep 17 00:00:00 2001 From: Jan Lehnardt Date: Fri, 24 Feb 2012 13:54:20 +0100 Subject: [PATCH] fix version replace --- mustache.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mustache.js b/mustache.js index 99b365e..53628ec 100644 --- a/mustache.js +++ b/mustache.js @@ -7,7 +7,7 @@ var Mustache = (typeof module !== "undefined" && module.exports) || {}; (function (exports) { exports.name = "mustache.js"; - exports.version = "0.5.14"; + exports.version = "%version%"; exports.tags = ["{{", "}}"]; exports.parse = parse; exports.compile = compile;