summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkpdecker <kpdecker@gmail.com>2015-09-01 01:30:13 -0500
committerkpdecker <kpdecker@gmail.com>2015-09-01 01:43:00 -0500
commitb0d217e13df11cb8cc3e23b242d6e8e20b9c1f30 (patch)
tree181751f4fe27f81c9f3ac549edea763fe2cb7294
parentc13c7df73d5d15580e8c3c7bc32ee41a3908540d (diff)
downloadhandlebars.js-b0d217e13df11cb8cc3e23b242d6e8e20b9c1f30.zip
handlebars.js-b0d217e13df11cb8cc3e23b242d6e8e20b9c1f30.tar.gz
handlebars.js-b0d217e13df11cb8cc3e23b242d6e8e20b9c1f30.tar.bz2
Rev runtime compiler revision
-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 e59f5e7..7bd248e 100644
--- a/lib/handlebars/base.js
+++ b/lib/handlebars/base.js
@@ -5,7 +5,7 @@ import {registerDefaultDecorators} from './decorators';
import logger from './logger';
export const VERSION = '3.0.1';
-export const COMPILER_REVISION = 6;
+export const COMPILER_REVISION = 7;
export const REVISION_CHANGES = {
1: '<= 1.0.rc.2', // 1.0.rc.2 is actually rev2 but doesn't report it
@@ -13,7 +13,8 @@ export const REVISION_CHANGES = {
3: '== 1.0.0-rc.4',
4: '== 1.x.x',
5: '== 2.0.0-alpha.x',
- 6: '>= 2.0.0-beta.1'
+ 6: '>= 2.0.0-beta.1',
+ 7: '>= 4.0.0'
};
const objectType = '[object Object]';
diff --git a/spec/expected/empty.amd.js b/spec/expected/empty.amd.js
index 0b39884..1cf1eab 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":[6,">= 2.0.0-beta.1"],"main":function(container,depth0,helpers,partials,data) {
+return templates['empty'] = template({"compiler":[7,">= 4.0.0"],"main":function(container,depth0,helpers,partials,data) {
return "";
},"useData":true});
});