Skip to content

Commit

Permalink
Update to v2.0.0-alpha.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kpdecker committed May 20, 2014
1 parent 42778fb commit c8bb363
Show file tree
Hide file tree
Showing 10 changed files with 34 additions and 22 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "handlebars",
"version": "2.0.0-alpha.3",
"version": "2.0.0-alpha.4",
"main": "handlebars.js",
"dependencies": {}
}
14 changes: 10 additions & 4 deletions handlebars.amd.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
handlebars v2.0.0-alpha.3
handlebars v2.0.0-alpha.4
Copyright (C) 2011-2014 by Yehuda Katz
Expand Down Expand Up @@ -167,7 +167,7 @@ define(
var Utils = __dependency1__;
var Exception = __dependency2__["default"];

var VERSION = "2.0.0-alpha.3";
var VERSION = "2.0.0-alpha.4";
__exports__.VERSION = VERSION;var COMPILER_REVISION = 5;
__exports__.COMPILER_REVISION = COMPILER_REVISION;
var REVISION_CHANGES = {
Expand Down Expand Up @@ -1864,11 +1864,17 @@ define(
}
return compiled.call(this, context, options);
};
ret.child = function(i) {
ret._setup = function(options) {
if (!compiled) {
compiled = compileInput();
}
return compiled._setup(options);
};
ret._child = function(i) {
if (!compiled) {
compiled = compileInput();
}
return compiled.child(i);
return compiled._child(i);
};
return ret;
}
Expand Down
4 changes: 2 additions & 2 deletions handlebars.amd.min.js

Large diffs are not rendered by default.

14 changes: 10 additions & 4 deletions handlebars.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
handlebars v2.0.0-alpha.3
handlebars v2.0.0-alpha.4
Copyright (C) 2011-2014 by Yehuda Katz
Expand Down Expand Up @@ -174,7 +174,7 @@ var __module2__ = (function(__dependency1__, __dependency2__) {
var Utils = __dependency1__;
var Exception = __dependency2__;

var VERSION = "2.0.0-alpha.3";
var VERSION = "2.0.0-alpha.4";
__exports__.VERSION = VERSION;var COMPILER_REVISION = 5;
__exports__.COMPILER_REVISION = COMPILER_REVISION;
var REVISION_CHANGES = {
Expand Down Expand Up @@ -1883,11 +1883,17 @@ var __module10__ = (function(__dependency1__) {
}
return compiled.call(this, context, options);
};
ret.child = function(i) {
ret._setup = function(options) {
if (!compiled) {
compiled = compileInput();
}
return compiled._setup(options);
};
ret._child = function(i) {
if (!compiled) {
compiled = compileInput();
}
return compiled.child(i);
return compiled._child(i);
};
return ret;
}
Expand Down
2 changes: 1 addition & 1 deletion handlebars.js.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>handlebars.js</id>
<version>2.0.0-alpha.3</version>
<version>2.0.0-alpha.4</version>
<authors>handlebars.js Authors</authors>
<licenseUrl>https://github.com/wycats/handlebars.js/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/wycats/handlebars.js/</projectUrl>
Expand Down
4 changes: 2 additions & 2 deletions handlebars.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions handlebars.runtime.amd.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
handlebars v2.0.0-alpha.3
handlebars v2.0.0-alpha.4
Copyright (C) 2011-2014 by Yehuda Katz
Expand Down Expand Up @@ -167,7 +167,7 @@ define(
var Utils = __dependency1__;
var Exception = __dependency2__["default"];

var VERSION = "2.0.0-alpha.3";
var VERSION = "2.0.0-alpha.4";
__exports__.VERSION = VERSION;var COMPILER_REVISION = 5;
__exports__.COMPILER_REVISION = COMPILER_REVISION;
var REVISION_CHANGES = {
Expand Down
4 changes: 2 additions & 2 deletions handlebars.runtime.amd.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions handlebars.runtime.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
handlebars v2.0.0-alpha.3
handlebars v2.0.0-alpha.4
Copyright (C) 2011-2014 by Yehuda Katz
Expand Down Expand Up @@ -174,7 +174,7 @@ var __module1__ = (function(__dependency1__, __dependency2__) {
var Utils = __dependency1__;
var Exception = __dependency2__;

var VERSION = "2.0.0-alpha.3";
var VERSION = "2.0.0-alpha.4";
__exports__.VERSION = VERSION;var COMPILER_REVISION = 5;
__exports__.COMPILER_REVISION = COMPILER_REVISION;
var REVISION_CHANGES = {
Expand Down
Loading

0 comments on commit c8bb363

Please sign in to comment.