Rev runtime version

This commit is contained in:
kpdecker
2014-08-25 13:49:20 -05:00
parent dc9a2ed7eb
commit 64f422b57f
2 changed files with 4 additions and 3 deletions
+3 -2
View File
@@ -2,14 +2,15 @@ module Utils from "./utils";
import Exception from "./exception";
export var VERSION = "2.0.0-alpha.4";
export var COMPILER_REVISION = 5;
export var COMPILER_REVISION = 6;
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.x.x',
5: '>= 2.0.0'
5: '>= 2.0.0-alpha.x',
6: '>= 2.0.0-beta.1'
};
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":[5,">= 2.0.0"],"main":function(depth0,helpers,partials,data) {
return templates['empty'] = template({"compiler":[6,">= 2.0.0-beta.1"],"main":function(depth0,helpers,partials,data) {
return "";
},"useData":true});
});