From 85145e8c388d5157a71a72d45388b9aae059b627 Mon Sep 17 00:00:00 2001 From: Chase Sillevis Date: Thu, 12 May 2016 11:47:27 +0200 Subject: [PATCH 1/2] Release 0.8.2 --- CHANGELOG.md | 7 +++++++ package.json | 2 +- test/main.js | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c319e68..b019e8cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,3 +26,10 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Resolved a problem with the package command and a custom config file [#90](https://github.com/motdotla/node-lambda/pull/90) - Allow `use strict` [#86](https://github.com/motdotla/node-lambda/pull/86) - Updated the `env.example` file to set the default (and by AWS recommended) runtime to `nodejs4.3` [#84](https://github.com/motdotla/node-lambda/pull/84) + +## [0.8.2] - 2016-05-12 +### Bugfixes +- Verify env vars before creating sample files [#99](https://github.com/motdotla/node-lambda/pull/99) +- Fix `AWS_PUBLIS` type [#102](https://github.com/motdotla/node-lambda/pull/102) +### Added +- Allow checking on `process.env.environment` to context switch [#95](https://github.com/motdotla/node-lambda/pull/95) diff --git a/package.json b/package.json index 479e1503..af0a37be 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-lambda", - "version": "0.8.1", + "version": "0.8.2", "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 ba34fa1a..e1348017 100644 --- a/test/main.js +++ b/test/main.js @@ -34,7 +34,7 @@ describe('node-lambda', function () { }); it('version should be set', function () { - assert.equal(lambda.version, '0.8.1'); + assert.equal(lambda.version, '0.8.2'); }); describe('_params', function () { From 5015feb457be2f676c04b6dfdb39e78b9cbe1c6d Mon Sep 17 00:00:00 2001 From: Chase Date: Thu, 12 May 2016 11:52:15 +0200 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b019e8cd..ba9db17f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,6 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [0.8.2] - 2016-05-12 ### Bugfixes - Verify env vars before creating sample files [#99](https://github.com/motdotla/node-lambda/pull/99) -- Fix `AWS_PUBLIS` type [#102](https://github.com/motdotla/node-lambda/pull/102) +- Fix `AWS_PUBLIS` typo [#102](https://github.com/motdotla/node-lambda/pull/102) ### Added - Allow checking on `process.env.environment` to context switch [#95](https://github.com/motdotla/node-lambda/pull/95)