Skip to content

Commit

Permalink
chore: publish 0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
shepherdwind committed Oct 28, 2015
1 parent 070b974 commit be7b7ff
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -6,6 +6,7 @@ notifications:

node_js:
- 'iojs-2'
- '4.2.1'

install:
- npm install
Expand Down
4 changes: 4 additions & 0 deletions History.md
@@ -1,3 +1,7 @@
## 0.7.2

- fix: merge [52](https://github.com/shepherdwind/velocity.js/pull/52)

## 0.7.1

- fix: merge [51](https://github.com/shepherdwind/velocity.js/pull/51)
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "velocityjs",
"description": "Velocity Template Language(VTL) for JavaScript",
"version": "0.7.1",
"version": "0.7.2",
"keywords": [
"velocity template"
],
Expand Down
2 changes: 1 addition & 1 deletion src/compile/references.js
Expand Up @@ -270,7 +270,7 @@ module.exports = function(Velocity, utils) {

var that = this;

if(typeof baseRef === 'object'){
if(typeof baseRef === 'object' && baseRef){
baseRef.eval = function() {
return that.eval.apply(that, arguments);
};
Expand Down

0 comments on commit be7b7ff

Please sign in to comment.