Skip to content

Commit

Permalink
Version bump v1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiezane committed May 6, 2015
1 parent 9910bf1 commit 60c6cd5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 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.8.0] - 2015-5-06
### Added
- addBcc and setBccs functions

## [1.7.0] - 2015-4-27
### Added
- Support for API keys
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.7.0"
"sendgrid": "^1.8.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.7.0",
"version": "1.8.0",
"homepage": "http://sendgrid.com",
"repository": {
"type": "git",
Expand Down
10 changes: 5 additions & 5 deletions test/lib/sendgrid.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ var sinon = require('sinon');
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");
});

it('should be an instance of SendGrid', function() {
var sendgrid = SendGrid(API_USER, API_KEY);
expect(sendgrid).to.be.an.instanceof(SendGrid);
Expand Down Expand Up @@ -46,11 +51,6 @@ describe('SendGrid', function () {
expect(sendgrid.Email).to.not.be.undefined;
});

it('version should be set', function() {
var sendgrid = SendGrid(API_USER, API_KEY);
expect(sendgrid.version).to.equal("1.7.0");
});

it('should attach a options object to self', function() {
var sendgrid = SendGrid(API_USER, API_KEY);
expect( typeof sendgrid.options).to.equal('object');
Expand Down

0 comments on commit 60c6cd5

Please sign in to comment.