Skip to content

Commit dbb252b

Browse files
committed
Release 2.1.1
1 parent f68eac1 commit dbb252b

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

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

3+
## 2.1.1 (2023/07/22)
4+
* Bug fix: ESM path on Windows
5+
* Downgrade commander-js
6+
37
## 2.1.0 (2023/07/20)
48
* Support API gateway (replaces old --watch)
59
* Support ECMAScript (thanks tdanecker #230)
610
* Support Lambda streaming (thanks Skn0tt #229)
11+
* Update dependencies
712

813
## 2.0.3 (2022/09/12)
914
* Fix `callbackWaitsForEmptyEventLoop` on recent NodeJS versions (>=16) (#217)

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lambda-local",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "Commandline tool to run Lambda functions on your local machine.",
55
"main": "build/lambdalocal.js",
66
"types": "build/lambdalocal.d.ts",
@@ -29,7 +29,7 @@
2929
"maintainers": [
3030
{
3131
"name": "Gabriel Potter (gpotter2)",
32-
"email": "gabriel@potter.fr"
32+
"email": "10530980+gpotter2@users.noreply.github.com"
3333
}
3434
],
3535
"engines": {

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.1.0";
22+
export const version = "2.1.1";
2323

2424
var logger = utils.getWinstonConsole();
2525

0 commit comments

Comments
 (0)