From b8f368f526e81e3463b01434d976ff1edd316f66 Mon Sep 17 00:00:00 2001 From: Chase Sillevis Date: Tue, 6 Sep 2016 22:09:23 +0200 Subject: [PATCH 1/2] bump to 0.8.9 --- CHANGELOG.md | 5 +++++ package.json | 2 +- test/main.js | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c8b317ba..1f38aeb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -73,3 +73,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### 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) + +## [0.8.9] - 2016-09-06 +### Bugs +- The above mentioned fix for issue [#127](https://github.com/motdotla/node-lambda/issues/127) exposed a commander bug, reverted the change. +- Do not exclude package.json, even when specified in excludeGlobs [#141](https://github.com/motdotla/node-lambda/pull/141) diff --git a/package.json b/package.json index 9138a174..ad9d320e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-lambda", - "version": "0.8.8", + "version": "0.8.9", "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 65bb1b60..1e471097 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.8'); + assert.equal(lambda.version, '0.8.9'); }); describe('_params', function () { From 2ac68d5af80bf4b47be1bc36e3a7decd5e24cbac Mon Sep 17 00:00:00 2001 From: Chase Date: Tue, 6 Sep 2016 22:11:57 +0200 Subject: [PATCH 2/2] No dots --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f38aeb1..ec6eef9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -76,5 +76,5 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [0.8.9] - 2016-09-06 ### Bugs -- The above mentioned fix for issue [#127](https://github.com/motdotla/node-lambda/issues/127) exposed a commander bug, reverted the change. +- The above mentioned fix for issue [#127](https://github.com/motdotla/node-lambda/issues/127) exposed a commander bug, reverted the change - Do not exclude package.json, even when specified in excludeGlobs [#141](https://github.com/motdotla/node-lambda/pull/141)