From ce7f75377c7f172c9e83036337f98695371c6edd Mon Sep 17 00:00:00 2001 From: Chase Date: Tue, 28 Mar 2017 11:49:03 +0200 Subject: [PATCH] bump to 0.8.15 (#207) --- CHANGELOG.md | 9 +++++++++ package.json | 2 +- test/main.js | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca57ad5a..1a22b4e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -115,3 +115,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Bugfixes - Fix unit test failure at travis [#198](https://github.com/motdotla/node-lambda/pull/198) + +## [0.8.15] - 2017-03-28 +### Features +- Added DeadLetterConfig parameter [#206](https://github.com/motdotla/node-lambda/pull/206) + +### Bugfixes +- Fix default value of EVENT_SOURCE_FILE set '' [#205](https://github.com/motdotla/node-lambda/pull/205) +- Removed event_sources.json [#204](https://github.com/motdotla/node-lambda/pull/204) +- Add -S, --eventSourceFile option. [#203](https://github.com/motdotla/node-lambda/pull/203) diff --git a/package.json b/package.json index c72cebf8..245f05c6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-lambda", - "version": "0.8.14", + "version": "0.8.15", "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 68824ba6..6760271f 100644 --- a/test/main.js +++ b/test/main.js @@ -37,7 +37,7 @@ describe('node-lambda', function () { }); it('version should be set', function () { - assert.equal(lambda.version, '0.8.14'); + assert.equal(lambda.version, '0.8.15'); }); describe('_params', function () {