Skip to content

Commit b28bf2c

Browse files
committed
🚢 bump to version 3.1.0
1 parent 81b0fab commit b28bf2c

6 files changed

+19
-5
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
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.1.0] / 13 September 2019
7+
8+
### Added
9+
10+
* [#717]: Added support .js files as views in command line tool, by [@JEStaubach].
11+
12+
### Fixed
13+
14+
* [#716]: Bugfix for indentation of inline partials, by [@yotammadem].
15+
616
## [3.0.3] / 27 August 2019
717

818
### Added
@@ -347,6 +357,7 @@ This release is made to revert changes introduced in [2.3.1] that caused unexpec
347357
* Fixed a bug that clashed with QUnit (thanks [@kannix]).
348358
* Added volo support (thanks [@guybedford]).
349359

360+
[3.1.0]: https://github.com/janl/mustache.js/compare/v3.0.3...v3.1.0
350361
[3.0.3]: https://github.com/janl/mustache.js/compare/v3.0.2...v3.0.3
351362
[3.0.2]: https://github.com/janl/mustache.js/compare/v3.0.1...v3.0.2
352363
[3.0.1]: https://github.com/janl/mustache.js/compare/v3.0.0...v3.0.1
@@ -411,6 +422,8 @@ This release is made to revert changes introduced in [2.3.1] that caused unexpec
411422
[#705]: https://github.com/janl/mustache.js/issues/705
412423
[#713]: https://github.com/janl/mustache.js/issues/713
413424
[#714]: https://github.com/janl/mustache.js/issues/714
425+
[#716]: https://github.com/janl/mustache.js/issues/716
426+
[#717]: https://github.com/janl/mustache.js/issues/717
414427

415428
[@afc163]: https://github.com/afc163
416429
[@andersk]: https://github.com/andersk
@@ -426,6 +439,7 @@ This release is made to revert changes introduced in [2.3.1] that caused unexpec
426439
[@Flaque]: https://github.com/Flaque
427440
[@guybedford]: https://github.com/guybedford
428441
[@imagentleman]: https://github.com/imagentleman
442+
[@JEStaubach]: https://github.com/JEStaubach
429443
[@jfmercer]: https://github.com/jfmercer
430444
[@jrburke]: https://github.com/jrburke
431445
[@kannix]: https://github.com/kannix

mustache.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@
656656
};
657657

658658
mustache.name = 'mustache.js';
659-
mustache.version = '3.0.3';
659+
mustache.version = '3.1.0';
660660
mustache.tags = [ '{{', '}}' ];
661661

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

mustache.js.nuspec

+1-1
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.3</version>
5+
<version>3.1.0</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>

mustache.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mustache",
3-
"version": "3.0.3",
3+
"version": "3.1.0",
44
"description": "Logic-less {{mustache}} templates with JavaScript",
55
"author": "mustache.js Authors <http://github.com/janl/mustache.js>",
66
"homepage": "https://github.com/janl/mustache.js",

0 commit comments

Comments
 (0)