Skip to content

Commit 67c39b8

Browse files
committed
🚢 bump to version 4.1.0
1 parent 224fe3a commit 67c39b8

7 files changed

Lines changed: 19 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
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+
## [4.1.0] / 6 December 2020
7+
8+
### Added
9+
10+
* [#764]: `render()` now recognizes a config object argument, by [@pineapplemachine].
11+
12+
### Fixed
13+
14+
* [#764]: Ask custom `escape` functions to escape all types of values (including `number`s), by [@pineapplemachine].
15+
616
## [4.0.1] / 15 March 2020
717

818
### Fixed
@@ -467,6 +477,7 @@ This release is made to revert changes introduced in [2.3.1] that caused unexpec
467477
* Fixed a bug that clashed with QUnit (thanks [@kannix]).
468478
* Added volo support (thanks [@guybedford]).
469479

480+
[4.1.0]: https://github.com/janl/mustache.js/compare/v4.0.1...v4.1.0
470481
[4.0.1]: https://github.com/janl/mustache.js/compare/v4.0.0...v4.0.1
471482
[4.0.0]: https://github.com/janl/mustache.js/compare/v3.2.1...v4.0.0
472483
[3.2.1]: https://github.com/janl/mustache.js/compare/v3.2.0...v3.2.1
@@ -543,6 +554,7 @@ This release is made to revert changes introduced in [2.3.1] that caused unexpec
543554
[#731]: https://github.com/janl/mustache.js/issues/731
544555
[#735]: https://github.com/janl/mustache.js/issues/735
545556
[#739]: https://github.com/janl/mustache.js/issues/739
557+
[#764]: https://github.com/janl/mustache.js/issues/764
546558

547559
[@afc163]: https://github.com/afc163
548560
[@aielo]: https://github.com/aielo
@@ -581,6 +593,7 @@ This release is made to revert changes introduced in [2.3.1] that caused unexpec
581593
[@paultopia]: https://github.com/paultopia
582594
[@pgilad]: https://github.com/pgilad
583595
[@phillipj]: https://github.com/phillipj
596+
[@pineapplemachine]: https://github.com/pineapplemachine
584597
[@pra85]: https://github.com/pra85
585598
[@raymond-lam]: https://github.com/raymond-lam
586599
[@seminaoki]: https://github.com/seminaoki

mustache.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@
701701

702702
var mustache = {
703703
name: 'mustache.js',
704-
version: '4.0.1',
704+
version: '4.1.0',
705705
tags: [ '{{', '}}' ],
706706
clearCache: undefined,
707707
escape: undefined,

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>4.0.1</version>
5+
<version>4.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

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mustache.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ Writer.prototype.getConfigEscape = function getConfigEscape (config) {
694694

695695
var mustache = {
696696
name: 'mustache.js',
697-
version: '4.0.1',
697+
version: '4.1.0',
698698
tags: [ '{{', '}}' ],
699699
clearCache: undefined,
700700
escape: undefined,

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mustache",
3-
"version": "4.0.1",
3+
"version": "4.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)