Skip to content

Commit

Permalink
🚢 bump to version 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dasilvacontin committed Jun 4, 2015
1 parent 15e7016 commit b479bb8
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
2.1.0 / 5 June 2015
===================

* Added license attribute to package.json, by @pgilad.
* Minor changes to make mustache.js compatible with both WSH and ASP, by @nagaozen.
* Improve CLI view parsing error, by @phillipj.
* Bugfix for view context cache, by @phillipj.

2.0.0 / 27 Mar 2015
==================
===================

* Fixed lookup not stopping upon finding `undefined` or `null` values, by @dasilvacontin.
* Refactored pre-commit hook, by @dasilvacontin.
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mustache.js",
"main": "mustache.js",
"version": "2.0.0",
"version": "2.1.0",
"homepage": "https://github.com/janl/mustache.js",
"authors": [
"mustache.js Authors <http://github.com/janl/mustache.js>"
Expand Down
2 changes: 1 addition & 1 deletion mustache.js
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@
};

mustache.name = 'mustache.js';
mustache.version = '2.0.0';
mustache.version = '2.1.0';
mustache.tags = [ '{{', '}}' ];

// All high-level mustache.* functions use this writer.
Expand Down
2 changes: 1 addition & 1 deletion mustache.js.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>mustache.js</id>
<version>2.0.0</version>
<version>2.1.0</version>
<authors>mustache.js Authors</authors>
<licenseUrl>https://github.com/janl/mustache.js/blob/master/LICENSE</licenseUrl>
<projectUrl>http://mustache.github.com/</projectUrl>
Expand Down
2 changes: 1 addition & 1 deletion mustache.min.js

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mustache",
"version": "2.0.0",
"version": "2.1.0",
"description": "Logic-less {{mustache}} templates with JavaScript",
"author": "mustache.js Authors <http://github.com/janl/mustache.js>",
"repository": {
Expand Down

2 comments on commit b479bb8

@phillipj
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice @dasilvacontin, thanks!

@dasilvacontin
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, you too! :)

Please sign in to comment.