Skip to content

Commit b73edf9

Browse files
author
Chase Sillevis
committed
bump to 0.8.8
1 parent fcc330e commit b73edf9

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
6464
- rsync should not exclude node_modules when using --prebuiltDirectory. [#122](https://github.com/motdotla/node-lambda/pull/122)
6565
- Set environment variables _before_ requiring module [#137](https://github.com/motdotla/node-lambda/pull/137)
6666
- Typo fix publish when updating existing function [#138](https://github.com/motdotla/node-lambda/pull/138)
67+
68+
## [0.8.8] - 2016-09-02
69+
### Features
70+
- Support AWS_PROFILE and de-duped a few CLI options [#144](https://github.com/motdotla/node-lambda/pull/144)
71+
- `wrench` was deprecated and has been replaced by `fs-extra` [#146](https://github.com/motdotla/node-lambda/pull/146)
72+
73+
### Bugs
74+
- Displaying `node-lambda -h` returned an error [#127](https://github.com/motdotla/node-lambda/issues/127)
75+
- NPM overwrites `$TMPDIR` [#134](https://github.com/motdotla/node-lambda/issues/134)

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.7",
3+
"version": "0.8.8",
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.7');
39+
assert.equal(lambda.version, '0.8.8');
4040
});
4141

4242
describe('_params', function () {

0 commit comments

Comments
 (0)