Просмотр исходного кода

:ship: bump to version 3.2.1

tags/v3.2.1
Phillip Johnsen 6 лет назад
Родитель
Сommit
8e52a4ac6c
7 измененных файлов: 15 добавлений и 6 удалений
  1. +9
    -0
      CHANGELOG.md
  2. +1
    -1
      mustache.js
  3. +1
    -1
      mustache.js.nuspec
  4. +1
    -1
      mustache.min.js
  5. +1
    -1
      mustache.mjs
  6. +1
    -1
      package-lock.json
  7. +1
    -1
      package.json

+ 9
- 0
CHANGELOG.md Просмотреть файл

@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/). This project adheres to [Semantic Versioning](http://semver.org/).


## [3.2.1] / 30 December 2019

### Fixed

* [#733]: Allow the CLI to use JavaScript views when the project has ES6 modules enabled, by [@eobrain].

## [3.2.0] / 18 December 2019 ## [3.2.0] / 18 December 2019


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


[3.2.1]: https://github.com/janl/mustache.js/compare/v3.2.0...v3.2.1
[3.2.0]: https://github.com/janl/mustache.js/compare/v3.1.0...v3.2.0 [3.2.0]: https://github.com/janl/mustache.js/compare/v3.1.0...v3.2.0
[3.1.0]: https://github.com/janl/mustache.js/compare/v3.0.3...v3.1.0 [3.1.0]: https://github.com/janl/mustache.js/compare/v3.0.3...v3.1.0
[3.0.3]: https://github.com/janl/mustache.js/compare/v3.0.2...v3.0.3 [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
[#716]: https://github.com/janl/mustache.js/issues/716 [#716]: https://github.com/janl/mustache.js/issues/716
[#717]: https://github.com/janl/mustache.js/issues/717 [#717]: https://github.com/janl/mustache.js/issues/717
[#728]: https://github.com/janl/mustache.js/issues/728 [#728]: https://github.com/janl/mustache.js/issues/728
[#733]: https://github.com/janl/mustache.js/issues/733


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


+ 1
- 1
mustache.js Просмотреть файл

@@ -651,7 +651,7 @@


var mustache = { var mustache = {
name: 'mustache.js', name: 'mustache.js',
version: '3.2.0',
version: '3.2.1',
tags: [ '{{', '}}' ], tags: [ '{{', '}}' ],
clearCache: undefined, clearCache: undefined,
escape: undefined, escape: undefined,


+ 1
- 1
mustache.js.nuspec Просмотреть файл

@@ -2,7 +2,7 @@
<package > <package >
<metadata> <metadata>
<id>mustache.js</id> <id>mustache.js</id>
<version>3.2.0</version>
<version>3.2.1</version>
<authors>mustache.js Authors</authors> <authors>mustache.js Authors</authors>
<licenseUrl>https://github.com/janl/mustache.js/blob/master/LICENSE</licenseUrl> <licenseUrl>https://github.com/janl/mustache.js/blob/master/LICENSE</licenseUrl>
<projectUrl>http://mustache.github.com/</projectUrl> <projectUrl>http://mustache.github.com/</projectUrl>


+ 1
- 1
mustache.min.js
Разница между файлами не показана из-за своего большого размера
Просмотреть файл


+ 1
- 1
mustache.mjs Просмотреть файл

@@ -644,7 +644,7 @@ Writer.prototype.rawValue = function rawValue (token) {


var mustache = { var mustache = {
name: 'mustache.js', name: 'mustache.js',
version: '3.2.0',
version: '3.2.1',
tags: [ '{{', '}}' ], tags: [ '{{', '}}' ],
clearCache: undefined, clearCache: undefined,
escape: undefined, escape: undefined,


+ 1
- 1
package-lock.json Просмотреть файл

@@ -1,6 +1,6 @@
{ {
"name": "mustache", "name": "mustache",
"version": "3.2.0",
"version": "3.2.1",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {


+ 1
- 1
package.json Просмотреть файл

@@ -1,6 +1,6 @@
{ {
"name": "mustache", "name": "mustache",
"version": "3.2.0",
"version": "3.2.1",
"description": "Logic-less {{mustache}} templates with JavaScript", "description": "Logic-less {{mustache}} templates with JavaScript",
"author": "mustache.js Authors <http://github.com/janl/mustache.js>", "author": "mustache.js Authors <http://github.com/janl/mustache.js>",
"homepage": "https://github.com/janl/mustache.js", "homepage": "https://github.com/janl/mustache.js",


Загрузка…
Отмена
Сохранить