Skip to content

Commit

Permalink
Release v1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Seth Kinast committed Apr 13, 2015
1 parent 1f481f4 commit 66d1843
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
@@ -1,6 +1,11 @@
## Change Log

### v1.6.2 (2015/03/26 20:42 +00:00)
### 1.6.3 (2015/04/13 18:03 +00:00)
- [#131](https://github.com/linkedin/dustjs-helpers/pull/131) Explicitly check context.stack.tail.head to make sure it is defined (@sethkinast, @rragan)
- [#130](https://github.com/linkedin/dustjs-helpers/pull/130) Move to Travis CI Container builds (@sethkinast)
- [#127](https://github.com/linkedin/dustjs-helpers/pull/127) Add grunt-github-changes plugin to automatically update changelog before releases (@sethkinast)

### v1.6.2 (2015/03/26 20:43 +00:00)
- [#126](https://github.com/linkedin/dustjs-helpers/pull/126) Deprecate tap helper (@sethkinast)
- [#119](https://github.com/linkedin/dustjs-helpers/pull/119) Normalize all log messages. (@sethkinast)
- [#125](https://github.com/linkedin/dustjs-helpers/pull/125) Improvements to checking for the existence of a {@select} state. (@sethkinast)
Expand Down
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "dustjs-helpers",
"version": "1.6.2",
"version": "1.6.3",
"homepage": "https://github.com/linkedin/dustjs-helpers",
"authors": [
"Veena Basavaraj <vybs@users.noreply.github.com>",
Expand Down
3 changes: 2 additions & 1 deletion dist/dust-helpers.js
@@ -1,4 +1,4 @@
/*! dustjs-helpers - v1.6.2
/*! dustjs-helpers - v1.6.3
* https://github.com/linkedin/dustjs-helpers
* Copyright (c) 2015 Aleksander Williams; Released under the MIT License */
(function(root, factory) {
Expand Down Expand Up @@ -28,6 +28,7 @@ function _deprecated(target) {

function isSelect(context) {
return context.stack.tail &&
context.stack.tail.head &&
typeof context.stack.tail.head.__select__ !== "undefined";
}

Expand Down
4 changes: 2 additions & 2 deletions dist/dust-helpers.min.js

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

1 change: 1 addition & 0 deletions gruntfile.js
Expand Up @@ -199,6 +199,7 @@ module.exports = function (grunt) {
options: {
owner: "linkedin",
repository: "dustjs-helpers",
tagName: "<%= pkg.version %>",
onlyPulls: true,
useCommitBody: true,
auth: true
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "dustjs-helpers",
"version": "1.6.2",
"version": "1.6.3",
"author": {
"name": "Aleksander Williams",
"url": "http://akdubya.github.com/dustjs"
Expand Down

0 comments on commit 66d1843

Please sign in to comment.