diff --git a/CHANGELOG.md b/CHANGELOG.md index 60497a60..6054577b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,3 +41,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [0.8.4] - 2016-05-20 ### Bugfixes - Added extra quotes around the parsed environment [#106](https://github.com/motdotla/node-lambda/pull/106) + +## [0.8.5] - 2016-05-27 +### Adjustment +- Extremely verbose NPM installs could crash node-lambda's buffer [#108](https://github.com/motdotla/node-lambda/pull/108) diff --git a/package.json b/package.json index dc699a6b..c6842a94 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-lambda", - "version": "0.8.4", + "version": "0.8.5", "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 c17e9e91..f53efd3e 100644 --- a/test/main.js +++ b/test/main.js @@ -34,7 +34,7 @@ describe('node-lambda', function () { }); it('version should be set', function () { - assert.equal(lambda.version, '0.8.4'); + assert.equal(lambda.version, '0.8.5'); }); describe('_params', function () {