diff options
author | Elmer Thomas <elmer@thinkingserious.com> | 2016-08-02 13:50:08 -0700 |
---|---|---|
committer | Elmer Thomas <elmer@thinkingserious.com> | 2016-08-02 13:50:08 -0700 |
commit | 0df161366357cb1e0e9a9e3155a8e3d026574787 (patch) | |
tree | 5d14fc396efe82f6c4968eeba3d5b150b68acfa7 | |
parent | e7a3f6328343925836fb978ca8f16c43b32f61d8 (diff) | |
download | sendgrid-nodejs-4.0.1.zip sendgrid-nodejs-4.0.1.tar.gz sendgrid-nodejs-4.0.1.tar.bz2 |
Version Bump v4.0.1: #264 backwards compatibility fixesv4.0.1
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | package.json | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f21390..e41f08a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Change Log All notable changes to this project will be documented in this file. +## [4.0.1] - 2016-08-02 ## +### Fixed +- Pull request [#264](https://github.com/sendgrid/sendgrid-nodejs/pull/264): Fixed backwards compatability with Node.js versions 0.10 and 0.12 +- Use var instead of let +- Check if Promise is defined + ## [4.0.0] - 2016-08-02 ## ### Breaking Change - Pull request [#261](https://github.com/sendgrid/sendgrid-nodejs/pull/261) @@ -38,7 +38,7 @@ Add the following to your `package.json` file: ... "dependencies": { ... - "sendgrid": "^4.0.0" + "sendgrid": "^4.0.1" } } ``` diff --git a/package.json b/package.json index 22180b7..f51a88e 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ ], "name": "sendgrid", "description": "Official SendGrid NodeJS library.", - "version": "4.0.0", + "version": "4.0.1", "homepage": "https://sendgrid.com", "repository": { "type": "git", |