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

:ship: bump to version 2.2.0

tags/v2.2.0
David da Silva 10 лет назад
Родитель
Сommit
aac23a542c
5 измененных файлов: 35 добавлений и 6 удалений
  1. +31
    -2
      CHANGELOG.md
  2. +1
    -1
      mustache.js
  3. +1
    -1
      mustache.js.nuspec
  4. +1
    -1
      mustache.min.js
  5. +1
    -1
      package.json

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

@@ -3,6 +3,30 @@
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/).


## [2.2.0] / 15 October 2015

### Added

* Add Partials support to CLI, by [@palkan].

## Changed

* Move install instructions to README's top, by [@mateusortiz]
* Improved devhook install output, by [@ShashankaNataraj].
* Clarifies and improves language in documentation, by [@jfmercer].
* Linting CLI tool, by [@phillipj].
* npm 2.x and node v4 on Travis, by [@phillipj].

## Fixes

* Fix README spelling error to "aforementioned", by [@djchie].
* Equal error message test in .render() for server and browser, by [@phillipj].

## Dependencies

* chai -> 3.3.0
* eslint -> 1.6.0

## [2.1.3] / 23 July 2015 ## [2.1.3] / 23 July 2015


### Added ### Added
@@ -135,6 +159,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
* 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]).


[2.2.0]: https://github.com/janl/mustache.js/compare/v2.1.3...v2.2.0
[2.1.3]: https://github.com/janl/mustache.js/compare/v2.1.2...v2.1.3 [2.1.3]: https://github.com/janl/mustache.js/compare/v2.1.2...v2.1.3
[2.1.2]: https://github.com/janl/mustache.js/compare/v2.1.1...v2.1.2 [2.1.2]: https://github.com/janl/mustache.js/compare/v2.1.1...v2.1.2
[2.1.1]: https://github.com/janl/mustache.js/compare/v2.1.0...v2.1.1 [2.1.1]: https://github.com/janl/mustache.js/compare/v2.1.0...v2.1.1
@@ -163,12 +188,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
[#274]: https://github.com/janl/mustache.js/issues/274 [#274]: https://github.com/janl/mustache.js/issues/274
[#466]: https://github.com/janl/mustache.js/issues/466 [#466]: https://github.com/janl/mustache.js/issues/466


[@Andersos]: https://github.com/Andersos
[@TiddoLangerak]: https://github.com/TiddoLangerak
[@afc163]: https://github.com/afc163 [@afc163]: https://github.com/afc163
[@Andersos]: https://github.com/Andersos
[@cmbuckley]: https://github.com/cmbuckley [@cmbuckley]: https://github.com/cmbuckley
[@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
[@fallenice]: https://github.com/fallenice [@fallenice]: https://github.com/fallenice
[@guybedford]: https://github.com/guybedford [@guybedford]: https://github.com/guybedford
[@jfmercer]: https://github.com/jfmercer [@jfmercer]: https://github.com/jfmercer
@@ -176,9 +201,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
[@kannix]: https://github.com/kannix [@kannix]: https://github.com/kannix
[@kkirsche]: https://github.com/kkirsche [@kkirsche]: https://github.com/kkirsche
[@kristijanmatic]: https://github.com/kristijanmatic [@kristijanmatic]: https://github.com/kristijanmatic
[@mateusortiz]: https://github.com/mateusortiz
[@mikesherov]: https://github.com/mikesherov [@mikesherov]: https://github.com/mikesherov
[@mjackson]: https://github.com/mjackson [@mjackson]: https://github.com/mjackson
[@nagaozen]: https://github.com/nagaozen [@nagaozen]: https://github.com/nagaozen
[@palkan]: https://github.com/palkan
[@pgilad]: https://github.com/pgilad [@pgilad]: https://github.com/pgilad
[@phillipj]: https://github.com/phillipj [@phillipj]: https://github.com/phillipj
[@ShashankaNataraj]: https://github.com/ShashankaNataraj
[@TiddoLangerak]: https://github.com/TiddoLangerak
[@yousefcisco]: https://github.com/yousefcisco [@yousefcisco]: https://github.com/yousefcisco

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

@@ -565,7 +565,7 @@
}; };


mustache.name = 'mustache.js'; mustache.name = 'mustache.js';
mustache.version = '2.1.3';
mustache.version = '2.2.0';
mustache.tags = [ '{{', '}}' ]; mustache.tags = [ '{{', '}}' ];


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


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

@@ -2,7 +2,7 @@
<package > <package >
<metadata> <metadata>
<id>mustache.js</id> <id>mustache.js</id>
<version>2.1.3</version>
<version>2.2.0</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
package.json Просмотреть файл

@@ -1,6 +1,6 @@
{ {
"name": "mustache", "name": "mustache",
"version": "2.1.3",
"version": "2.2.0",
"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",


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