Skip to content

Commit 5740051

Browse files
authored
bump to 0.9.0 - new milestone (#229)
* bump to 0.9.0 - new milestone * hotfix
1 parent 66a7059 commit 5740051

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,21 @@ This project adheres to [Semantic Versioning](http://semver.org/).
124124
- Fix default value of EVENT_SOURCE_FILE set '' [#205](https://github.com/motdotla/node-lambda/pull/205)
125125
- Removed event_sources.json [#204](https://github.com/motdotla/node-lambda/pull/204)
126126
- Add -S, --eventSourceFile option. [#203](https://github.com/motdotla/node-lambda/pull/203)
127+
128+
## [0.9.0] - 2017-04-13
129+
### Features
130+
- Add tests for _readArchive [#213](https://github.com/motdotla/node-lambda/pull/213)
131+
- Add tests for event_sources.json [#214](https://github.com/motdotla/node-lambda/pull/214)
132+
- Add tests for DeadLetterConfig [#215](https://github.com/motdotla/node-lambda/pull/215)
133+
- Add _readArchive tests called in _archive [#216](https://github.com/motdotla/node-lambda/pull/216)
134+
- modify badge from png to svg [#227](https://github.com/motdotla/node-lambda/pull/227)
135+
- ScheduleEvents [#228](https://github.com/motdotla/node-lambda/pull/228)
136+
137+
### Bugfixes
138+
- Bugfix InvalidParameterValueException is given when createFunction [#209](https://github.com/motdotla/node-lambda/pull/209)
139+
- Clean unnecessary `else` [#217](https://github.com/motdotla/node-lambda/pull/217)
140+
- Refactor _eventSourceList [#218](https://github.com/motdotla/node-lambda/pull/218)
141+
- Clean deploy function [#220](https://github.com/motdotla/node-lambda/pull/220)
142+
- Fix default value of params.Environment.Variables is null [#221](https://github.com/motdotla/node-lambda/pull/221)
143+
- Fix to use authenticated `aws` object in main.js [#225](https://github.com/motdotla/node-lambda/pull/225)
144+
- Changed the format of `event_sources.json` [#226](https://github.com/motdotla/node-lambda/pull/226)

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.15",
3+
"version": "0.9.0",
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
@@ -38,7 +38,7 @@ describe('node-lambda', function () {
3838
});
3939

4040
it('version should be set', function () {
41-
assert.equal(lambda.version, '0.8.15');
41+
assert.equal(lambda.version, '0.9.0');
4242
});
4343

4444
describe('_params', function () {

0 commit comments

Comments
 (0)