Compare commits

...

3 Commits

Author SHA1 Message Date
kpdecker efad61b1b7 v2.0.0-alpha.4 2014-05-19 23:15:50 -05:00
kpdecker 2a20976e6a Update release notes 2014-05-19 23:15:18 -05:00
kpdecker 3638874ddc Expose setup wrappers for compiled templates 2014-05-19 23:08:34 -05:00
6 changed files with 18 additions and 7 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "handlebars",
"version": "2.0.0-alpha.3",
"version": "2.0.0-alpha.4",
"main": "handlebars.js",
"dependencies": {}
}
+1 -1
View File
@@ -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>
+1 -1
View File
@@ -1,7 +1,7 @@
module Utils from "./utils";
import Exception from "./exception";
export var VERSION = "2.0.0-alpha.3";
export var VERSION = "2.0.0-alpha.4";
export var COMPILER_REVISION = 5;
export var REVISION_CHANGES = {
+8 -2
View File
@@ -457,11 +457,17 @@ export function compile(input, options, env) {
}
return compiled.call(this, context, options);
};
ret.child = function(i) {
ret._setup = function(options) {
if (!compiled) {
compiled = compileInput();
}
return compiled.child(i);
return compiled._setup(options);
};
ret._child = function(i) {
if (!compiled) {
compiled = compileInput();
}
return compiled._child(i);
};
return ret;
}
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "handlebars",
"barename": "handlebars",
"version": "2.0.0-alpha.3",
"version": "2.0.0-alpha.4",
"description": "Handlebars provides the power necessary to let you build semantic templates effectively with no frustration",
"homepage": "http://www.handlebarsjs.com/",
"keywords": [
+6 -1
View File
@@ -2,7 +2,12 @@
## Development
[Commits](https://github.com/wycats/handlebars.js/compare/v2.0.0-alpha.3...master)
[Commits](https://github.com/wycats/handlebars.js/compare/v2.0.0-alpha.4...master)
## v2.0.0-alpha.4 - May 19th, 2014
- Expose setup wrappers for compiled templates - 3638874
[Commits](https://github.com/wycats/handlebars.js/compare/v2.0.0-alpha.3...v2.0.0-alpha.4)
## v2.0.0-alpha.3 - May 19th, 2014
- [#797](https://github.com/wycats/handlebars.js/pull/797) - Pass full helper ID to helperMissing when options are provided ([@tomdale](https://api.github.com/users/tomdale))