diff --git a/CHANGELOG.md b/CHANGELOG.md index 1258fce6..c8b317ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -64,3 +64,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). - rsync should not exclude node_modules when using --prebuiltDirectory. [#122](https://github.com/motdotla/node-lambda/pull/122) - Set environment variables _before_ requiring module [#137](https://github.com/motdotla/node-lambda/pull/137) - Typo fix publish when updating existing function [#138](https://github.com/motdotla/node-lambda/pull/138) + +## [0.8.8] - 2016-09-02 +### Features +- Support AWS_PROFILE and de-duped a few CLI options [#144](https://github.com/motdotla/node-lambda/pull/144) +- `wrench` was deprecated and has been replaced by `fs-extra` [#146](https://github.com/motdotla/node-lambda/pull/146) + +### Bugs +- Displaying `node-lambda -h` returned an error [#127](https://github.com/motdotla/node-lambda/issues/127) +- NPM overwrites `$TMPDIR` [#134](https://github.com/motdotla/node-lambda/issues/134) diff --git a/package.json b/package.json index c42c25b0..9138a174 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-lambda", - "version": "0.8.7", + "version": "0.8.8", "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 25697b28..b559c951 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.7'); + assert.equal(lambda.version, '0.8.8'); }); describe('_params', function () {