Skip to content

Commit

Permalink
Release v1.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyhchan committed Dec 9, 2017
1 parent 09181af commit c466a25
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Change Log

### v1.7.4 (2017/12/09 05:05 +00:00)
- [#142](https://github.com/linkedin/dustjs-helpers/pull/142) Fix Node 8 - add registerWith property to dustjs-helpers which has factory function (@kumarrishav)

### v1.7.3 (2015/07/28 20:55 +00:00)
- [#140](https://github.com/linkedin/dustjs-helpers/pull/140) Fix logic helpers inside any and none blocks. (@sethkinast)

Expand Down Expand Up @@ -78,4 +81,4 @@
- [#12](https://github.com/linkedin/dustjs-helpers/pull/12) Math helper with Body issue #120 (@jimmyhchan)
- [#6](https://github.com/linkedin/dustjs-helpers/pull/6) Minor README markdown styling fix (@zzen)
- [#5](https://github.com/linkedin/dustjs-helpers/pull/5) Updated README to install node dependencies properly (@zzen)
- [#2](https://github.com/linkedin/dustjs-helpers/pull/2) Extend contextDump helper (@rragan)
- [#2](https://github.com/linkedin/dustjs-helpers/pull/2) Extend contextDump helper (@rragan)
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dustjs-helpers",
"version": "1.7.3",
"version": "1.7.4",
"homepage": "https://github.com/linkedin/dustjs-helpers",
"authors": [
"Veena Basavaraj <[email protected]>",
Expand Down
5 changes: 3 additions & 2 deletions dist/dust-helpers.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
/*! dustjs-helpers - v1.7.3
/*! dustjs-helpers - v1.7.4
* http://dustjs.com/
* Copyright (c) 2015 Aleksander Williams; Released under the MIT License */
* Copyright (c) 2017 Aleksander Williams; Released under the MIT License */
(function(root, factory) {
if (typeof define === 'function' && define.amd && define.amd.dust === true) {
define(['dust.core'], factory);
} else if (typeof exports === 'object') {
module.exports = factory(require('dustjs-linkedin'));
module.exports.registerWith = factory;
} else {
factory(root.dust);
}
Expand Down
6 changes: 3 additions & 3 deletions dist/dust-helpers.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dustjs-helpers",
"version": "1.7.3",
"version": "1.7.4",
"author": {
"name": "Aleksander Williams",
"url": "http://akdubya.github.com/dustjs"
Expand Down

0 comments on commit c466a25

Please sign in to comment.