summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorscottmotte <scott@scottmotte.com>2014-02-17 12:00:08 -0800
committerscottmotte <scott@scottmotte.com>2014-02-17 12:00:19 -0800
commitb0e613341cfcf4f024c990bb778a67402f51a9cf (patch)
tree218768a0ac2166cb910c851a1e5d583dde97f31c
parentfb3534ac3a7598119776644369589a053b418284 (diff)
downloadsendgrid-nodejs-b0e613341cfcf4f024c990bb778a67402f51a9cf.zip
sendgrid-nodejs-b0e613341cfcf4f024c990bb778a67402f51a9cf.tar.gz
sendgrid-nodejs-b0e613341cfcf4f024c990bb778a67402f51a9cf.tar.bz2
Version bump 1.0.1. Npmjs.org's latest update does not let me publish
1.0.0 after already publishing a 1.0.0.rc*.
-rw-r--r--README.md4
-rw-r--r--npm-shrinkwrap.json2
-rw-r--r--package.json2
-rw-r--r--test/lib/sendgrid.test.js2
4 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index da27362..30e149e 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
This nodejs module allows you to quickly and easily send emails through SendGrid using [nodejs](http://nodejs.org/).
-WARNING: This module was recently upgraded from [0.4.x](https://github.com/sendgrid/sendgrid-nodejs/tree/v0.4.6) to 1.0.0. There were API breaking changes for various method names. See [usage](https://github.com/sendgrid/sendgrid-nodejs#usage) for up to date method names.
+WARNING: This module was recently upgraded from [0.4.x](https://github.com/sendgrid/sendgrid-nodejs/tree/v0.4.6) to 1.0.1. There were API breaking changes for various method names. See [usage](https://github.com/sendgrid/sendgrid-nodejs#usage) for up to date method names.
[![BuildStatus](https://travis-ci.org/sendgrid/sendgrid-nodejs.png?branch=master)](https://travis-ci.org/sendgrid/sendgrid-nodejs)
[![NPM version](https://badge.fury.io/js/sendgrid.png)](http://badge.fury.io/js/sendgrid)
@@ -31,7 +31,7 @@ Add the following to your `package.json` file:
...
"dependencies": {
...
- "sendgrid": "1.0.0"
+ "sendgrid": "1.0.1"
}
}
```
diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json
index 876fd75..2b680ee 100644
--- a/npm-shrinkwrap.json
+++ b/npm-shrinkwrap.json
@@ -1,6 +1,6 @@
{
"name": "sendgrid",
- "version": "1.0.0",
+ "version": "1.0.1",
"dependencies": {
"mime": {
"version": "1.2.9",
diff --git a/package.json b/package.json
index 5427c80..b307f8e 100644
--- a/package.json
+++ b/package.json
@@ -9,7 +9,7 @@
],
"name": "sendgrid",
"description": "Official SendGrid NodeJS library.",
- "version": "1.0.0",
+ "version": "1.0.1",
"homepage": "http://sendgrid.com",
"repository": {
"type": "git",
diff --git a/test/lib/sendgrid.test.js b/test/lib/sendgrid.test.js
index b389a04..997bd5e 100644
--- a/test/lib/sendgrid.test.js
+++ b/test/lib/sendgrid.test.js
@@ -15,7 +15,7 @@ describe('SendGrid', function () {
});
it('version should be set', function() {
- expect(sendgrid.version).to.equal("1.0.0");
+ expect(sendgrid.version).to.equal("1.0.1");
});
it('should attach a options object to self', function() {