From 82bd4c783b33c1531130146ef610323b441bb41c Mon Sep 17 00:00:00 2001 From: Chase Sillevis Date: Tue, 16 Aug 2016 09:27:07 +0200 Subject: [PATCH] bump to 0.8.7 --- CHANGELOG.md | 12 ++++++++++++ package.json | 2 +- test/main.js | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 19b878a2..1258fce6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -52,3 +52,15 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Bugfixes - README was lying about how to use `excludeGlobs` [#111](https://github.com/motdotla/node-lambda/pull/111) + +## [0.8.7] - 2016-08-16 +### Features +- Added `-L` to rsync to allow copying of symlinks [#126](https://github.com/motdotla/node-lambda/pull/126) +- Added travisci support for node 6 [#129](https://github.com/motdotla/node-lambda/pull/129) +- Support to use package.json description for AWS description [#133](https://github.com/motdotla/node-lambda/pull/133) +- Inject environment variables via config file for the `run` command [#136](https://github.com/motdotla/node-lambda/pull/136) + +### Bugfixes +- 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) diff --git a/package.json b/package.json index 16161ca7..91ff8e54 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-lambda", - "version": "0.8.6", + "version": "0.8.7", "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 2bef2e68..6e872040 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.6'); + assert.equal(lambda.version, '0.8.7'); }); describe('_params', function () {