diff --git a/CHANGELOG.md b/CHANGELOG.md index a4f2e163..8c27def0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -82,3 +82,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [0.8.10] - 2016-09-20 ### Features - We are now passing the environment string to the post install script [#154](https://github.com/motdotla/node-lambda/pull/154) + +## [0.8.11] - 2016-10-28 +### Bugfixes +- Restore lambda version functionality [#156](https://github.com/motdotla/node-lambda/issues/156) +- Namespaced packages fail to deploy [#157](https://github.com/motdotla/node-lambda/issues/157) diff --git a/package.json b/package.json index 85f0eb4a..10e5e988 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-lambda", - "version": "0.8.10", + "version": "0.8.11", "description": "Command line tool for locally running and remotely deploying your node.js applications to Amazon Lambda.", "main": "lib/main.js", "directories": { diff --git a/test/main.js b/test/main.js index 33541ff4..0be10b46 100644 --- a/test/main.js +++ b/test/main.js @@ -36,7 +36,7 @@ describe('node-lambda', function () { }); it('version should be set', function () { - assert.equal(lambda.version, '0.8.10'); + assert.equal(lambda.version, '0.8.11'); }); describe('_params', function () {