Merge tag 'v1.7.1'

v1.7.1
This commit is contained in:
Miroslav Bajtoš 2014-03-18 18:16:00 +01:00
commit 1512ef4561
2 changed files with 2 additions and 2 deletions

View File

@ -257,7 +257,7 @@ User.findById(23, function(err, user) {
Find a single instance that matches the given where expression.
```js
User.findOne({id: 23}, function(err, user) {
User.findOne({where: {id: 23}}, function(err, user) {
console.info(user.id); // 23
});
```

View File

@ -9,7 +9,7 @@
"Platform",
"mBaaS"
],
"version": "1.7.0",
"version": "1.7.1",
"scripts": {
"test": "mocha -R spec"
},