Skip to content

Commit 06b7224

Browse files
committed
adjust compiler revision
1 parent 2078c72 commit 06b7224

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

lib/handlebars/base.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {registerDefaultDecorators} from './decorators';
55
import logger from './logger';
66

77
export const VERSION = '4.2.1';
8-
export const COMPILER_REVISION = 7;
8+
export const COMPILER_REVISION = 8;
99

1010
export const REVISION_CHANGES = {
1111
1: '<= 1.0.rc.2', // 1.0.rc.2 is actually rev2 but doesn't report it
@@ -14,7 +14,8 @@ export const REVISION_CHANGES = {
1414
4: '== 1.x.x',
1515
5: '== 2.0.0-alpha.x',
1616
6: '>= 2.0.0-beta.1',
17-
7: '>= 4.0.0'
17+
7: '>= 4.0.0 <4.3.0',
18+
8: '>= 4.3.0'
1819
};
1920

2021
const objectType = '[object Object]';

spec/expected/empty.amd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
define(['handlebars.runtime'], function(Handlebars) {
22
Handlebars = Handlebars["default"]; var template = Handlebars.template, templates = Handlebars.templates = Handlebars.templates || {};
3-
return templates['empty'] = template({"compiler":[7,">= 4.0.0"],"main":function(container,depth0,helpers,partials,data) {
3+
return templates['empty'] = template({"compiler":[8,">= 4.3.0"],"main":function(container,depth0,helpers,partials,data) {
44
return "";
55
},"useData":true});
66
});

0 commit comments

Comments
 (0)