Skip to content

Commit 98a74aa

Browse files
authored
bump to 0.11.2 (#347)
- Fix to deprecated the `configFile` option in the `pacakage` command [#344](#344) - Fix to set boolean in params.Publish [#346](#346)
1 parent b43cacd commit 98a74aa

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
@@ -240,3 +240,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
240240
- Update package-lock.json [#328](https://github.com/motdotla/node-lambda/pull/328)
241241
- Remove `_rsync` [#329](https://github.com/motdotla/node-lambda/pull/329)
242242
- Bugfixed that mode of file changes when zip is created [#335](https://github.com/motdotla/node-lambda/pull/335)
243+
244+
## [0.11.2] - 2017-07-05
245+
### Features
246+
- Fix to deprecated the `configFile` option in the `pacakage` command [#344](https://github.com/motdotla/node-lambda/pull/344)
247+
248+
### Bugfixes
249+
- Fix to set boolean in params.Publish [#346](https://github.com/motdotla/node-lambda/pull/346)

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.11.1",
3+
"version": "0.11.2",
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
@@ -126,7 +126,7 @@ describe('lib/main', function () {
126126
})
127127

128128
it('version should be set', () => {
129-
assert.equal(lambda.version, '0.11.1')
129+
assert.equal(lambda.version, '0.11.2')
130130
})
131131

132132
describe('_codeDirectory', () => {

0 commit comments

Comments
 (0)