Skip to content

Commit be6ef2a

Browse files
author
Chase Sillevis
committed
bump to 0.8.6
1 parent cec1b33 commit be6ef2a

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4545
## [0.8.5] - 2016-05-27
4646
### Adjustment
4747
- Extremely verbose NPM installs could crash node-lambda's buffer [#108](https://github.com/motdotla/node-lambda/pull/108)
48+
49+
## [0.8.6] - 2016-06-28
50+
### Feature
51+
- Added `prebuiltDirectory` flag for users that want to use an already generated directory [#116](https://github.com/motdotla/node-lambda/pull/116)
52+
53+
### Bugfixes
54+
- README was lying about how to use `excludeGlobs` [#111](https://github.com/motdotla/node-lambda/pull/111)

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

4242
describe('_params', function () {

0 commit comments

Comments
 (0)