From ee965618c9617cc10cb23ed029fc49555f4b074e Mon Sep 17 00:00:00 2001 From: Chase Sillevis Date: Fri, 22 Sep 2017 13:53:02 +0200 Subject: [PATCH] bump to 0.11.4 --- CHANGELOG.md | 23 +++++++++++++++++++++++ package.json | 2 +- test/main.js | 2 +- 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0373880f..aca9b6c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -251,3 +251,26 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [0.11.3] - 2017-07-07 ### Features - Fix symlink at zip [#348](https://github.com/motdotla/node-lambda/pull/348) + +## [0.11.4] - 2017-09-22 +### Features +- Remove configFile Option of package command in README [#350](https://github.com/motdotla/node-lambda/pull/350) +- Remove configFile option in package command [#351](https://github.com/motdotla/node-lambda/pull/351) +- Uprade chai [#352](https://github.com/motdotla/node-lambda/pull/352) +- Add the ability to set KMSKeyArn to a Lambda function [#356](https://github.com/motdotla/node-lambda/pull/356) +- Add appveyor.yml[#357](https://github.com/motdotla/node-lambda/pull/357) +- Add function for setting CloudWatchLogs RetentionPolicy [#359](https://github.com/motdotla/node-lambda/pull/359) +- Switch ScheduleEvents to class syntax [#360](https://github.com/motdotla/node-lambda/pull/360) +- Add `_setLogsRetentionPolicy` to `lib/main.js` [#361](https://github.com/motdotla/node-lambda/pull/361) +- Change `lib/main.js` to class syntax [#362](https://github.com/motdotla/node-lambda/pull/362) +- Use stable node, at npm release. [#370](https://github.com/motdotla/node-lambda/pull/370) +- Add option to disable run multiple [#372](https://github.com/motdotla/node-lambda/pull/372) + +### Bugfixes +- Update repository url [#358](https://github.com/motdotla/node-lambda/pull/358) +- Fix deploy command exit code [#366](https://github.com/motdotla/node-lambda/pull/366) +- Add invalidation of log output to make the test result easier to read [#367](https://github.com/motdotla/node-lambda/pull/367) +- Fix commandline version option [#368](https://github.com/motdotla/node-lambda/pull/368) +- Change: Ensure dotenv.load called before AWS load [#369](https://github.com/motdotla/node-lambda/pull/369) +- Update README with latest output for 'node-lambda run -h' [#373](https://github.com/motdotla/node-lambda/pull/373) +- Update Usage of README [#374](https://github.com/motdotla/node-lambda/pull/374) diff --git a/package.json b/package.json index 15de49eb..d8257588 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-lambda", - "version": "0.11.3", + "version": "0.11.4", "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 bbb8bc75..356272f0 100644 --- a/test/main.js +++ b/test/main.js @@ -146,7 +146,7 @@ describe('lib/main', function () { }) it('version should be set', () => { - assert.equal(lambda.version, '0.11.3') + assert.equal(lambda.version, '0.11.4') }) describe('_codeDirectory', () => {