From d78dc4c6970907e2d1b377b2c48b12e761e84f5a Mon Sep 17 00:00:00 2001 From: Chase Sillevis Date: Wed, 5 Jul 2017 14:14:35 +0200 Subject: [PATCH] bump to 0.11.2 - Fix to deprecated the `configFile` option in the `pacakage` command [#344](https://github.com/motdotla/node-lambda/pull/344) - Fix to set boolean in params.Publish [#346](https://github.com/motdotla/node-lambda/pull/346) --- CHANGELOG.md | 7 +++++++ package.json | 2 +- test/main.js | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b849c3ec..23c718ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -240,3 +240,10 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Update package-lock.json [#328](https://github.com/motdotla/node-lambda/pull/328) - Remove `_rsync` [#329](https://github.com/motdotla/node-lambda/pull/329) - Bugfixed that mode of file changes when zip is created [#335](https://github.com/motdotla/node-lambda/pull/335) + +## [0.11.2] - 2017-07-05 +### Features +- Fix to deprecated the `configFile` option in the `pacakage` command [#344](https://github.com/motdotla/node-lambda/pull/344) + +### Bugfixes +- Fix to set boolean in params.Publish [#346](https://github.com/motdotla/node-lambda/pull/346) diff --git a/package.json b/package.json index e62e2580..ff90f230 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-lambda", - "version": "0.11.1", + "version": "0.11.2", "description": "Command line tool for locally running and remotely deploying your node.js applications to Amazon Lambda.", "main": "lib/main.js", "directories": { diff --git a/test/main.js b/test/main.js index 74623dd8..0235649b 100644 --- a/test/main.js +++ b/test/main.js @@ -126,7 +126,7 @@ describe('lib/main', function () { }) it('version should be set', () => { - assert.equal(lambda.version, '0.11.1') + assert.equal(lambda.version, '0.11.2') }) describe('_codeDirectory', () => {