summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/handlebars/base.js5
-rw-r--r--spec/expected/empty.amd.js2
2 files changed, 4 insertions, 3 deletions
diff --git a/lib/handlebars/base.js b/lib/handlebars/base.js
index 26eb1a8..c26d658 100644
--- a/lib/handlebars/base.js
+++ b/lib/handlebars/base.js
@@ -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,
diff --git a/spec/expected/empty.amd.js b/spec/expected/empty.amd.js
index d80446a..e9616c3 100644
--- a/spec/expected/empty.amd.js
+++ b/spec/expected/empty.amd.js
@@ -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});
});