summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElmer Thomas <elmer@thinkingserious.com>2016-06-15 16:41:35 -0700
committerElmer Thomas <elmer@thinkingserious.com>2016-06-15 16:41:35 -0700
commit935754af2e9418f50c240c5dabc9bedfce36ad0b (patch)
tree101b84cb9b834d2e72672780748eb3e19294e82b
parentb78ffe9d2c13307f26a2d18170bbd629d6435689 (diff)
downloadsendgrid-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.md6
-rw-r--r--README.md2
-rw-r--r--package.json4
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
diff --git a/README.md b/README.md
index 21f8550..ed4e7f5 100644
--- a/README.md
+++ b/README.md
@@ -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",