Skip to content

Commit 967fb31

Browse files
committed
Version bump v1.9.1
1 parent 265e5a5 commit 967fb31

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
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.9.1] - 2015-7-20
5+
### Changed
6+
- Pinned request version to be less than `2.59.0` because it broke something
7+
48
## [1.9.0] - 2015-7-07
59
### Added
610
- setFromName function [#175](https://github.com/sendgrid/sendgrid-nodejs/pull/175)

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.9.0"
32+
"sendgrid": "^1.9.1"
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.9.0",
13+
"version": "1.9.1",
1414
"homepage": "http://sendgrid.com",
1515
"repository": {
1616
"type": "git",

test/lib/sendgrid.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var nock = require('nock');
1212
describe('SendGrid', function () {
1313
it('version should be set', function() {
1414
var sendgrid = SendGrid(API_USER, API_KEY);
15-
expect(sendgrid.version).to.equal("1.9.0");
15+
expect(sendgrid.version).to.equal("1.9.1");
1616
});
1717

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

0 commit comments

Comments
 (0)