Skip to content

Commit 672b018

Browse files
authored
bump to 0.8.13 (#190)
1 parent fee9f94 commit 672b018

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,3 +98,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
9898
### Features
9999
- Added getRemainingTimeInMillis() to the context when running locally. [#179](https://github.com/motdotla/node-lambda/pull/179)
100100
- Adding support for lambda environment variables [#181](https://github.com/motdotla/node-lambda/pull/181)
101+
102+
## [0.8.13] - 2017-02-12
103+
### Bugfixes
104+
- Fixed wrong runtime call [#188](https://github.com/motdotla/node-lambda/pull/188)
105+
- Docker support [#186](https://github.com/motdotla/node-lambda/pull/186)
106+
- Make default excludes apply to root only [#185](https://github.com/motdotla/node-lambda/pull/185)

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

4242
describe('_params', function () {

0 commit comments

Comments
 (0)