diff options
author | Elmer Thomas <elmer@thinkingserious.com> | 2016-06-15 16:41:35 -0700 |
---|---|---|
committer | Elmer Thomas <elmer@thinkingserious.com> | 2016-06-15 16:41:35 -0700 |
commit | 935754af2e9418f50c240c5dabc9bedfce36ad0b (patch) | |
tree | 101b84cb9b834d2e72672780748eb3e19294e82b | |
parent | b78ffe9d2c13307f26a2d18170bbd629d6435689 (diff) | |
download | sendgrid-nodejs-935754af2e9418f50c240c5dabc9bedfce36ad0b.zip sendgrid-nodejs-935754af2e9418f50c240c5dabc9bedfce36ad0b.tar.gz sendgrid-nodejs-935754af2e9418f50c240c5dabc9bedfce36ad0b.tar.bz2 |
Version Bump v3.0.5: Fix sending with accents
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | package.json | 4 |
3 files changed, 9 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 562feb8..2b99333 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. +## [3.0.5] - 2016-06-14 +### Fixed +- Updated dependency on https://github.com/sendgrid/nodejs-http-client +- Sending email with accents: https://github.com/sendgrid/sendgrid-nodejs/issues/239 +- Thanks [eaparango](https://github.com/eaparango)! + ## [3.0.4] - 2016-06-14 ### Fixed - Fixed exports and README example @@ -45,7 +45,7 @@ Add the following to your `package.json` file: ... "dependencies": { ... - "sendgrid": "^3.0.4" + "sendgrid": "^3.0.5" } } ``` diff --git a/package.json b/package.json index 0756709..6ff3ba6 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ ], "name": "sendgrid", "description": "Official SendGrid NodeJS library.", - "version": "3.0.4", + "version": "3.0.5", "homepage": "https://sendgrid.com", "repository": { "type": "git", @@ -21,7 +21,7 @@ "node": ">= 0.4.7" }, "dependencies": { - "sendgrid-rest": "^2.2.0" + "sendgrid-rest": "^2.2.1" }, "devDependencies": { "chai": "^3.5.0", |