Skip to content

Commit

Permalink
Version bump v1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiezane committed Jul 7, 2015
1 parent c35e6b5 commit 0702c1a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change Log
All notable changes to this project will be documented in this file.

## [1.9.0] - 2015-7-07
### Added
- setFromName function [#175](https://github.com/sendgrid/sendgrid-nodejs/pull/175)

## [1.8.0] - 2015-5-06
### Added
- addBcc and setBccs functions
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Add the following to your `package.json` file:
...
"dependencies": {
...
"sendgrid": "^1.8.0"
"sendgrid": "^1.9.0"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
],
"name": "sendgrid",
"description": "Official SendGrid NodeJS library.",
"version": "1.8.0",
"version": "1.9.0",
"homepage": "http://sendgrid.com",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion test/lib/sendgrid.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var nock = require('nock');
describe('SendGrid', function () {
it('version should be set', function() {
var sendgrid = SendGrid(API_USER, API_KEY);
expect(sendgrid.version).to.equal("1.8.0");
expect(sendgrid.version).to.equal("1.9.0");
});

it('should be an instance of SendGrid', function() {
Expand Down

0 comments on commit 0702c1a

Please sign in to comment.