Update compiler revision info

This commit is contained in:
kpdecker
2014-02-10 01:48:12 -06:00
parent c72a8d5e84
commit 6da3c31494
2 changed files with 4 additions and 3 deletions
+3 -2
View File
@@ -2,13 +2,14 @@ module Utils from "./utils";
import Exception from "./exception";
export var VERSION = "1.3.0";
export var COMPILER_REVISION = 4;
export var COMPILER_REVISION = 5;
export var REVISION_CHANGES = {
1: '<= 1.0.rc.2', // 1.0.rc.2 is actually rev2 but doesn't report it
2: '== 1.0.0-rc.3',
3: '== 1.0.0-rc.4',
4: '>= 1.0.0'
4: '== 1.x.x',
5: '>= 2.0.0'
};
var isArray = Utils.isArray,
+1 -1
View File
@@ -1,6 +1,6 @@
define(['handlebars.runtime'], function(Handlebars) {
Handlebars = Handlebars["default"]; var template = Handlebars.template, templates = Handlebars.templates = Handlebars.templates || {};
return templates['empty'] = template({"compiler":[4,">= 1.0.0"],"main":function(depth0,helpers,partials,data) {
return templates['empty'] = template({"compiler":[5,">= 2.0.0"],"main":function(depth0,helpers,partials,data) {
return "";
},"useData":true});
});