| @@ -1,10 +1,11 @@ | |||||
| = HEAD | |||||
| = 0.8.0 / 2 Dec 2013 | |||||
| * Remove compile* writer functions, use mustache.parse instead. Smaller API. | * Remove compile* writer functions, use mustache.parse instead. Smaller API. | ||||
| * Throw an error when rendering a template that contains higher-order sections and | * Throw an error when rendering a template that contains higher-order sections and | ||||
| the original template is not provided. | the original template is not provided. | ||||
| * Remove low-level Context.make function. | * Remove low-level Context.make function. | ||||
| * Better code readability and inline documentation. | * Better code readability and inline documentation. | ||||
| * Stop caching templates by name. | |||||
| = 0.7.3 / 5 Nov 2013 | = 0.7.3 / 5 Nov 2013 | ||||
| @@ -514,7 +514,7 @@ | |||||
| }; | }; | ||||
| mustache.name = "mustache.js"; | mustache.name = "mustache.js"; | ||||
| mustache.version = "0.7.3"; | |||||
| mustache.version = "0.8.0"; | |||||
| mustache.tags = [ "{{", "}}" ]; | mustache.tags = [ "{{", "}}" ]; | ||||
| // All high-level mustache.* functions use this writer. | // All high-level mustache.* functions use this writer. | ||||
| @@ -2,7 +2,7 @@ | |||||
| <package > | <package > | ||||
| <metadata> | <metadata> | ||||
| <id>mustache.js</id> | <id>mustache.js</id> | ||||
| <version>0.7.3</version> | |||||
| <version>0.8.0</version> | |||||
| <authors>mustache.js Authors</authors> | <authors>mustache.js Authors</authors> | ||||
| <licenseUrl>https://github.com/janl/mustache.js/blob/master/LICENSE</licenseUrl> | <licenseUrl>https://github.com/janl/mustache.js/blob/master/LICENSE</licenseUrl> | ||||
| <projectUrl>http://mustache.github.com/</projectUrl> | <projectUrl>http://mustache.github.com/</projectUrl> | ||||
| @@ -1,6 +1,6 @@ | |||||
| { | { | ||||
| "name": "mustache", | "name": "mustache", | ||||
| "version": "0.7.3", | |||||
| "version": "0.8.0", | |||||
| "description": "Logic-less {{mustache}} templates with JavaScript", | "description": "Logic-less {{mustache}} templates with JavaScript", | ||||
| "author": "mustache.js Authors <http://github.com/janl/mustache.js>", | "author": "mustache.js Authors <http://github.com/janl/mustache.js>", | ||||
| "repository": { | "repository": { | ||||
| @@ -19,7 +19,7 @@ | |||||
| This class contains code based on the following work: | This class contains code based on the following work: | ||||
| * Mustache.js version 0.7.3 | |||||
| * Mustache.js version 0.8.0 | |||||
| Code: | Code: | ||||
| https://github.com/janl/mustache.js | https://github.com/janl/mustache.js | ||||