Skip to content

Commit 9e8035d

Browse files
committed
🚢 bump to version 2.3.1
1 parent 2659301 commit 9e8035d

File tree

5 files changed

+33
-4
lines changed

5 files changed

+33
-4
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
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+
## [2.3.1] / 2 August 2018
7+
8+
### Minor
9+
10+
* [#643]: `Writer.prototype.parse` to cache by tags in addition to template string, by [@raymond-lam].
11+
* [#664]: Fix `Writer.prototype.parse` cache, by [@seminaoki].
12+
13+
### Dev
14+
15+
* [#666]: Install release tools with npm rather than pre-commit hook & `Rakefile`, by [@phillipj].
16+
* [#667], [#668]: Stabilize browser test suite, by [@phillipj].
17+
18+
### Docs
19+
20+
* [#644]: Document global Mustache.escape overriding capacity, by [@paultopia].
21+
* [#657]: Correct `Mustache.parse()` return type documentation, by [@bbrooks].
22+
623
## [2.3.0] / 8 November 2016
724

825
### Minor
@@ -202,6 +219,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
202219
* Fixed a bug that clashed with QUnit (thanks [@kannix]).
203220
* Added volo support (thanks [@guybedford]).
204221

222+
[2.3.1]: https://github.com/janl/mustache.js/compare/v2.3.0...v2.3.1
205223
[2.3.0]: https://github.com/janl/mustache.js/compare/v2.2.1...v2.3.0
206224
[2.2.1]: https://github.com/janl/mustache.js/compare/v2.2.0...v2.2.1
207225
[2.2.0]: https://github.com/janl/mustache.js/compare/v2.1.3...v2.2.0
@@ -244,9 +262,17 @@ This project adheres to [Semantic Versioning](http://semver.org/).
244262
[#593]: https://github.com/janl/mustache.js/issues/593
245263
[#597]: https://github.com/janl/mustache.js/issues/597
246264
[#610]: https://github.com/janl/mustache.js/issues/610
265+
[#643]: https://github.com/janl/mustache.js/issues/643
266+
[#644]: https://github.com/janl/mustache.js/issues/644
267+
[#657]: https://github.com/janl/mustache.js/issues/657
268+
[#664]: https://github.com/janl/mustache.js/issues/664
269+
[#666]: https://github.com/janl/mustache.js/issues/666
270+
[#667]: https://github.com/janl/mustache.js/issues/667
271+
[#668]: https://github.com/janl/mustache.js/issues/668
247272

248273
[@afc163]: https://github.com/afc163
249274
[@Andersos]: https://github.com/Andersos
275+
[@bbrooks]: https://github.com/bbrooks
250276
[@calvinf]: https://github.com/calvinf
251277
[@cmbuckley]: https://github.com/cmbuckley
252278
[@cweider]: https://github.com/cweider
@@ -272,9 +298,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
272298
[@nagaozen]: https://github.com/nagaozen
273299
[@norfish]: https://github.com/norfish
274300
[@palkan]: https://github.com/palkan
301+
[@paultopia]: https://github.com/paultopia
275302
[@pgilad]: https://github.com/pgilad
276303
[@phillipj]: https://github.com/phillipj
277304
[@pra85]: https://github.com/pra85
305+
[@raymond-lam]: https://github.com/raymond-lam
306+
[@seminaoki]: https://github.com/seminaoki
278307
[@ShashankaNataraj]: https://github.com/ShashankaNataraj
279308
[@simast]: https://github.com/simast
280309
[@TiddoLangerak]: https://github.com/TiddoLangerak

mustache.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@
568568
};
569569

570570
mustache.name = 'mustache.js';
571-
mustache.version = '2.3.0';
571+
mustache.version = '2.3.1';
572572
mustache.tags = [ '{{', '}}' ];
573573

574574
// 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>2.3.0</version>
5+
<version>2.3.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)