diff --git a/changelog.md b/changelog.md index 80b8795774..31f1b912c1 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ ## Changelog +__1.3.0__ + +- Add ability to create, update, patch and remove many ([#144](https://github.com/feathersjs/feathers/issues/144), [#179](https://github.com/feathersjs/feathers/pull/179)) +- Handle middleware passed after the service to app.use ([#176](https://github.com/feathersjs/feathers/issues/176), [#178](https://github.com/feathersjs/feathers/pull/178)) + __1.2.0__ - Add hook object to service events parameters ([#148](https://github.com/feathersjs/feathers/pull/148)) diff --git a/lib/feathers.js b/lib/feathers.js index 16c7c5c5e1..532827f865 100644 --- a/lib/feathers.js +++ b/lib/feathers.js @@ -35,7 +35,7 @@ exports.version = require('../package.json').version; _.defaults(module.exports, providers); // Add the error handling -_.defaults(module.exports, { errors: errors }); +_.defaults(module.exports, errors); // Expose all express methods (like express.engine()) _.defaults(module.exports, express); diff --git a/package.json b/package.json index 9153831448..a498761bd0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "feathers", "description": "Build Better APIs, Faster than Ever.", - "version": "1.2.1", + "version": "1.3.0", "homepage": "http://feathersjs.com", "repository": { "type": "git", @@ -43,8 +43,8 @@ "dependencies": { "debug": "^2.1.1", "express": "^4.12.3", - "feathers-commons": "^0.2.0", - "feathers-errors": "^1.1.0", + "feathers-commons": "^0.3.0", + "feathers-errors": "^1.1.4", "lodash": "^3.1.0", "primus": "^4.0.1", "primus-emitter": "^3.0.2",