diff --git a/CHANGELOG.md b/CHANGELOG.md index 459d885..609493a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -425,3 +425,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [0.19.0] - 2021-03-30 ### Features - feat: support `--no-optional` option in npm install [#557](https://github.com/motdotla/node-lambda/pull/557) + +## [0.19.1] - 2021-04-24 +### Bugfixes +- Fix errors caused by old proxy-agent [#564](https://github.com/motdotla/node-lambda/pull/564) diff --git a/package-lock.json b/package-lock.json index e801fb4..dab7132 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "node-lambda", - "version": "0.19.0", + "version": "0.19.1", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 0295f74..7e6cb20 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-lambda", - "version": "0.19.0", + "version": "0.19.1", "description": "Command line tool for locally running and remotely deploying your node.js applications to Amazon Lambda.", "main": "lib/main.js", "directories": { diff --git a/test/main.js b/test/main.js index 745e58a..d02b189 100644 --- a/test/main.js +++ b/test/main.js @@ -149,7 +149,7 @@ describe('lib/main', function () { }) it('version should be set', () => { - assert.equal(lambda.version, '0.19.0') + assert.equal(lambda.version, '0.19.1') }) describe('_codeDirectory', () => {