Skip to content

Commit 8e52a4a

Browse files
committed
🚢 bump to version 3.2.1
1 parent aaaa94f commit 8e52a4a

7 files changed

+15
-6
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
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.2.1] / 30 December 2019
7+
8+
### Fixed
9+
10+
* [#733]: Allow the CLI to use JavaScript views when the project has ES6 modules enabled, by [@eobrain].
11+
612
## [3.2.0] / 18 December 2019
713

814
### Added
@@ -411,6 +417,7 @@ This release is made to revert changes introduced in [2.3.1] that caused unexpec
411417
* Fixed a bug that clashed with QUnit (thanks [@kannix]).
412418
* Added volo support (thanks [@guybedford]).
413419

420+
[3.2.1]: https://github.com/janl/mustache.js/compare/v3.2.0...v3.2.1
414421
[3.2.0]: https://github.com/janl/mustache.js/compare/v3.1.0...v3.2.0
415422
[3.1.0]: https://github.com/janl/mustache.js/compare/v3.0.3...v3.1.0
416423
[3.0.3]: https://github.com/janl/mustache.js/compare/v3.0.2...v3.0.3
@@ -480,6 +487,7 @@ This release is made to revert changes introduced in [2.3.1] that caused unexpec
480487
[#716]: https://github.com/janl/mustache.js/issues/716
481488
[#717]: https://github.com/janl/mustache.js/issues/717
482489
[#728]: https://github.com/janl/mustache.js/issues/728
490+
[#733]: https://github.com/janl/mustache.js/issues/733
483491

484492
[@afc163]: https://github.com/afc163
485493
[@andersk]: https://github.com/andersk
@@ -490,6 +498,7 @@ This release is made to revert changes introduced in [2.3.1] that caused unexpec
490498
[@cweider]: https://github.com/cweider
491499
[@dasilvacontin]: https://github.com/dasilvacontin
492500
[@djchie]: https://github.com/djchie
501+
[@eobrain]: https://github.com/eobrain
493502
[@EvanLovely]: https://github.com/EvanLovely
494503
[@fallenice]: https://github.com/fallenice
495504
[@Flaque]: https://github.com/Flaque

mustache.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,7 @@
651651

652652
var mustache = {
653653
name: 'mustache.js',
654-
version: '3.2.0',
654+
version: '3.2.1',
655655
tags: [ '{{', '}}' ],
656656
clearCache: undefined,
657657
escape: undefined,

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.2.0</version>
5+
<version>3.2.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>

mustache.min.js

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

mustache.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ Writer.prototype.rawValue = function rawValue (token) {
644644

645645
var mustache = {
646646
name: 'mustache.js',
647-
version: '3.2.0',
647+
version: '3.2.1',
648648
tags: [ '{{', '}}' ],
649649
clearCache: undefined,
650650
escape: undefined,

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.2.0",
3+
"version": "3.2.1",
44
"description": "Logic-less {{mustache}} templates with JavaScript",
55
"author": "mustache.js Authors <https://github.com/janl/mustache.js>",
66
"homepage": "https://github.com/janl/mustache.js",

0 commit comments

Comments
 (0)