Skip to content

Commit 60c6cd5

Browse files
committed
Version bump v1.8.0
1 parent 9910bf1 commit 60c6cd5

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [1.8.0] - 2015-5-06
5+
### Added
6+
- addBcc and setBccs functions
7+
48
## [1.7.0] - 2015-4-27
59
### Added
610
- Support for API keys

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Add the following to your `package.json` file:
2929
...
3030
"dependencies": {
3131
...
32-
"sendgrid": "^1.7.0"
32+
"sendgrid": "^1.8.0"
3333
}
3434
}
3535
```

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
],
1111
"name": "sendgrid",
1212
"description": "Official SendGrid NodeJS library.",
13-
"version": "1.7.0",
13+
"version": "1.8.0",
1414
"homepage": "http://sendgrid.com",
1515
"repository": {
1616
"type": "git",

test/lib/sendgrid.test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ var sinon = require('sinon');
1010
var nock = require('nock');
1111

1212
describe('SendGrid', function () {
13+
it('version should be set', function() {
14+
var sendgrid = SendGrid(API_USER, API_KEY);
15+
expect(sendgrid.version).to.equal("1.8.0");
16+
});
17+
1318
it('should be an instance of SendGrid', function() {
1419
var sendgrid = SendGrid(API_USER, API_KEY);
1520
expect(sendgrid).to.be.an.instanceof(SendGrid);
@@ -46,11 +51,6 @@ describe('SendGrid', function () {
4651
expect(sendgrid.Email).to.not.be.undefined;
4752
});
4853

49-
it('version should be set', function() {
50-
var sendgrid = SendGrid(API_USER, API_KEY);
51-
expect(sendgrid.version).to.equal("1.7.0");
52-
});
53-
5454
it('should attach a options object to self', function() {
5555
var sendgrid = SendGrid(API_USER, API_KEY);
5656
expect( typeof sendgrid.options).to.equal('object');

0 commit comments

Comments
 (0)