Skip to content

Commit b37dd0e

Browse files
committed
Release 2.1.0
1 parent 0a0e355 commit b37dd0e

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# ChangeLog
22

3+
## 2.1.0 (2023/07/20)
4+
* Support API gateway (replaces old --watch)
5+
* Support ECMAScript (thanks tdanecker #230)
6+
* Support Lambda streaming (thanks Skn0tt #229)
7+
38
## 2.0.3 (2022/09/12)
49
* Fix `callbackWaitsForEmptyEventLoop` on recent NodeJS versions (>=16) (#217)
510
* Support clientContext as an object (#223)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lambda-local",
3-
"version": "2.0.0",
3+
"version": "2.1.0",
44
"description": "Commandline tool to run Lambda functions on your local machine.",
55
"main": "build/lambdalocal.js",
66
"types": "build/lambdalocal.d.ts",

src/lambdalocal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ require("./lib/streaming.js");
1919
/*
2020
* Lambda local version
2121
*/
22-
export const version = "2.0.0";
22+
export const version = "2.1.0";
2323

2424
var logger = utils.getWinstonConsole();
2525

0 commit comments

Comments
 (0)