Skip to content

Commit ee96561

Browse files
committed
bump to 0.11.4
1 parent a706c3b commit ee96561

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,3 +251,26 @@ This project adheres to [Semantic Versioning](http://semver.org/).
251251
## [0.11.3] - 2017-07-07
252252
### Features
253253
- Fix symlink at zip [#348](https://github.com/motdotla/node-lambda/pull/348)
254+
255+
## [0.11.4] - 2017-09-22
256+
### Features
257+
- Remove configFile Option of package command in README [#350](https://github.com/motdotla/node-lambda/pull/350)
258+
- Remove configFile option in package command [#351](https://github.com/motdotla/node-lambda/pull/351)
259+
- Uprade chai [#352](https://github.com/motdotla/node-lambda/pull/352)
260+
- Add the ability to set KMSKeyArn to a Lambda function [#356](https://github.com/motdotla/node-lambda/pull/356)
261+
- Add appveyor.yml[#357](https://github.com/motdotla/node-lambda/pull/357)
262+
- Add function for setting CloudWatchLogs RetentionPolicy [#359](https://github.com/motdotla/node-lambda/pull/359)
263+
- Switch ScheduleEvents to class syntax [#360](https://github.com/motdotla/node-lambda/pull/360)
264+
- Add `_setLogsRetentionPolicy` to `lib/main.js` [#361](https://github.com/motdotla/node-lambda/pull/361)
265+
- Change `lib/main.js` to class syntax [#362](https://github.com/motdotla/node-lambda/pull/362)
266+
- Use stable node, at npm release. [#370](https://github.com/motdotla/node-lambda/pull/370)
267+
- Add option to disable run multiple [#372](https://github.com/motdotla/node-lambda/pull/372)
268+
269+
### Bugfixes
270+
- Update repository url [#358](https://github.com/motdotla/node-lambda/pull/358)
271+
- Fix deploy command exit code [#366](https://github.com/motdotla/node-lambda/pull/366)
272+
- Add invalidation of log output to make the test result easier to read [#367](https://github.com/motdotla/node-lambda/pull/367)
273+
- Fix commandline version option [#368](https://github.com/motdotla/node-lambda/pull/368)
274+
- Change: Ensure dotenv.load called before AWS load [#369](https://github.com/motdotla/node-lambda/pull/369)
275+
- Update README with latest output for 'node-lambda run -h' [#373](https://github.com/motdotla/node-lambda/pull/373)
276+
- Update Usage of README [#374](https://github.com/motdotla/node-lambda/pull/374)

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.3",
3+
"version": "0.11.4",
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
@@ -146,7 +146,7 @@ describe('lib/main', function () {
146146
})
147147

148148
it('version should be set', () => {
149-
assert.equal(lambda.version, '0.11.3')
149+
assert.equal(lambda.version, '0.11.4')
150150
})
151151

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

0 commit comments

Comments
 (0)