From 309d74c630f72388aeaeba4f08b496bf4d0aa010 Mon Sep 17 00:00:00 2001 From: Chase Sillevis Date: Sun, 12 Feb 2017 12:05:27 -0800 Subject: [PATCH] bump to 0.8.13 --- CHANGELOG.md | 6 ++++++ package.json | 2 +- test/main.js | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 338785a6..6c82b910 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -98,3 +98,9 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Features - Added getRemainingTimeInMillis() to the context when running locally. [#179](https://github.com/motdotla/node-lambda/pull/179) - Adding support for lambda environment variables [#181](https://github.com/motdotla/node-lambda/pull/181) + +## [0.8.13] - 2017-02-12 +### Bugfixes +- Fixed wrong runtime call [#188](https://github.com/motdotla/node-lambda/pull/188) +- Docker support [#186](https://github.com/motdotla/node-lambda/pull/186) +- Make default excludes apply to root only [#185](https://github.com/motdotla/node-lambda/pull/185) diff --git a/package.json b/package.json index 897bad6a..ef824225 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-lambda", - "version": "0.8.12", + "version": "0.8.13", "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 db37e66d..2423e13f 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.12'); + assert.equal(lambda.version, '0.8.13'); }); describe('_params', function () {