diff options
-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", |