Skip to content

Commit 82bd4c7

Browse files
author
Chase Sillevis
committed
bump to 0.8.7
1 parent 358ed80 commit 82bd4c7

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
5252

5353
### Bugfixes
5454
- README was lying about how to use `excludeGlobs` [#111](https://github.com/motdotla/node-lambda/pull/111)
55+
56+
## [0.8.7] - 2016-08-16
57+
### Features
58+
- Added `-L` to rsync to allow copying of symlinks [#126](https://github.com/motdotla/node-lambda/pull/126)
59+
- Added travisci support for node 6 [#129](https://github.com/motdotla/node-lambda/pull/129)
60+
- Support to use package.json description for AWS description [#133](https://github.com/motdotla/node-lambda/pull/133)
61+
- Inject environment variables via config file for the `run` command [#136](https://github.com/motdotla/node-lambda/pull/136)
62+
63+
### Bugfixes
64+
- rsync should not exclude node_modules when using --prebuiltDirectory. [#122](https://github.com/motdotla/node-lambda/pull/122)
65+
- Set environment variables _before_ requiring module [#137](https://github.com/motdotla/node-lambda/pull/137)
66+
- Typo fix publish when updating existing function [#138](https://github.com/motdotla/node-lambda/pull/138)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-lambda",
3-
"version": "0.8.6",
3+
"version": "0.8.7",
44
"description": "Command line tool for locally running and remotely deploying your node.js applications to Amazon Lambda.",
55
"main": "lib/main.js",
66
"directories": {

test/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe('node-lambda', function () {
3636
});
3737

3838
it('version should be set', function () {
39-
assert.equal(lambda.version, '0.8.6');
39+
assert.equal(lambda.version, '0.8.7');
4040
});
4141

4242
describe('_params', function () {

0 commit comments

Comments
 (0)