Skip to content

Commit ece4389

Browse files
committed
Release 1.7.4
1 parent 2284122 commit ece4389

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

CHANGELOG.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,23 @@
11
# ChangeLog
22

3-
## 1.7.3 (2020-06/04)
3+
## 1.7.4 (2020/10/12)
4+
* Fix crash when an Error is raised with no stack (#GH202)
5+
* Add --version and `lambdaLocal.version` support
6+
* Improve logging of the --watch option
7+
* Bump dependencies & minor build improvements
8+
9+
## 1.7.3 (2020/06/04)
410
* Bump dependencies. No API changes
511

6-
## 1.7.2 (2020-04/13)
12+
## 1.7.2 (2020/04/13)
713
* Add --watch parameter
814
* Bump dependencies
915

10-
## 1.7.1 (2020-01/28)
16+
## 1.7.1 (2020/01/28)
1117
* Add support for `_HANDLER`
1218
* Update environment variables computation & consistency with context
1319

14-
## 1.7.0 (2020-01/17)
20+
## 1.7.0 (2020/01/17)
1521
* Migrate to TypeScript (#191)
1622

1723
## 1.6.3 (2019/07/04)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lambda-local",
3-
"version": "1.7.3",
3+
"version": "1.7.4",
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import Context = require('./lib/context.js');
1717
/*
1818
* Lambda local version
1919
*/
20-
export const version = "1.7.3";
20+
export const version = "1.7.4";
2121

2222
var logger = utils.getWinstonConsole();
2323

0 commit comments

Comments
 (0)