From 4491da7cfece87293fa631f33a7771b0058aa3f6 Mon Sep 17 00:00:00 2001 From: Chase Sillevis Date: Fri, 20 May 2016 15:24:01 +0200 Subject: [PATCH] Bump to 0.8.4 --- CHANGELOG.md | 4 ++++ package.json | 2 +- test/main.js | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3732de32..60497a60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,3 +37,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [0.8.3] - 2016-05-12 ### Bugfixes - Added `EXCLUDE_GLOBS` to `package`, so your local ZIPs are the same as the ZIPs uploaded to AWS Lambda [#104](https://github.com/motdotla/node-lambda/pull/104) + +## [0.8.4] - 2016-05-20 +### Bugfixes +- Added extra quotes around the parsed environment [#106](https://github.com/motdotla/node-lambda/pull/106) diff --git a/package.json b/package.json index e8c82ae0..dc699a6b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-lambda", - "version": "0.8.3", + "version": "0.8.4", "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 74c65fbe..c17e9e91 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.3'); + assert.equal(lambda.version, '0.8.4'); }); describe('_params', function () {