diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c319e68..ba9db17f 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` 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) 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 () {