diff --git a/CHANGELOG.md b/CHANGELOG.md index 8828f50b..c0f9f028 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -382,3 +382,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Modify unit tests [#501](https://github.com/motdotla/node-lambda/pull/501) - Fix GitHub Actions workflow [#500](https://github.com/motdotla/node-lambda/pull/500) - Add GitHub Actions workflow [#499](https://github.com/motdotla/node-lambda/pull/499) + +## [0.16.0] - 2020-02-12 +### Features +- Remove osx from travis [#513](https://github.com/motdotla/node-lambda/pull/513) +- Drop nodejs8.10 from runtime [#516](https://github.com/motdotla/node-lambda/pull/516) diff --git a/package-lock.json b/package-lock.json index 3cd90b99..3754f9bb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "node-lambda", - "version": "0.15.0", + "version": "0.16.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 07208ae5..7d9392b0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-lambda", - "version": "0.15.0", + "version": "0.16.0", "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 89361227..dc7eabaf 100644 --- a/test/main.js +++ b/test/main.js @@ -148,7 +148,7 @@ describe('lib/main', function () { }) it('version should be set', () => { - assert.equal(lambda.version, '0.15.0') + assert.equal(lambda.version, '0.16.0') }) describe('_codeDirectory', () => {