Skip to content

Commit 38b1448

Browse files
committed
🚢 bump to version 3.0.1
1 parent d170f41 commit 38b1448

5 files changed

Lines changed: 12 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6+
## [3.0.1] / 11 November 2018
7+
8+
* [#679]: Fix partials not rendering tokens when using custom tags, by [@stackchain].
9+
610
## [3.0.0] / 16 September 2018
711

812
We are very happy to announce a new major version of mustache.js. We want to be very careful not to break projects
@@ -88,7 +92,7 @@ console.log(
8892
>> TEST 1
8993
```
9094

91-
The above illustrates the fact that `Mustache.parse()` made mustache.js cache the template without considering
95+
The above illustrates the fact that `Mustache.parse()` made mustache.js cache the template without considering
9296
the custom delimiters provided. This is no longer true.
9397

9498
We no longer encourage using `Mustache.parse()` for this purpose, but have rather added a fourth argument to
@@ -321,6 +325,7 @@ This release is made to revert changes introduced in [2.3.1] that caused unexpec
321325
* Fixed a bug that clashed with QUnit (thanks [@kannix]).
322326
* Added volo support (thanks [@guybedford]).
323327

328+
[3.0.1]: https://github.com/janl/mustache.js/compare/v3.0.0...v3.0.1
324329
[3.0.0]: https://github.com/janl/mustache.js/compare/v2.3.2...v3.0.0
325330
[2.3.2]: https://github.com/janl/mustache.js/compare/v2.3.1...v2.3.2
326331
[2.3.1]: https://github.com/janl/mustache.js/compare/v2.3.0...v2.3.1
@@ -376,6 +381,7 @@ This release is made to revert changes introduced in [2.3.1] that caused unexpec
376381
[#670]: https://github.com/janl/mustache.js/issues/670
377382
[#618]: https://github.com/janl/mustache.js/issues/618
378383
[#673]: https://github.com/janl/mustache.js/issues/673
384+
[#679]: https://github.com/janl/mustache.js/issues/679
379385

380386
[@afc163]: https://github.com/afc163
381387
[@Andersos]: https://github.com/Andersos
@@ -413,6 +419,7 @@ This release is made to revert changes introduced in [2.3.1] that caused unexpec
413419
[@seminaoki]: https://github.com/seminaoki
414420
[@ShashankaNataraj]: https://github.com/ShashankaNataraj
415421
[@simast]: https://github.com/simast
422+
[@stackchain]: https://github.com/stackchain
416423
[@TiddoLangerak]: https://github.com/TiddoLangerak
417424
[@tomekwi]: https://github.com/tomekwi
418425
[@wizawu]: https://github.com/wizawu

mustache.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@
617617
};
618618

619619
mustache.name = 'mustache.js';
620-
mustache.version = '3.0.0';
620+
mustache.version = '3.0.1';
621621
mustache.tags = [ '{{', '}}' ];
622622

623623
// All high-level mustache.* functions use this writer.

mustache.js.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package >
33
<metadata>
44
<id>mustache.js</id>
5-
<version>3.0.0</version>
5+
<version>3.0.1</version>
66
<authors>mustache.js Authors</authors>
77
<licenseUrl>https://github.com/janl/mustache.js/blob/master/LICENSE</licenseUrl>
88
<projectUrl>http://mustache.github.com/</projectUrl>

0 commit comments

Comments
 (0)