File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed
Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 11# Change Log
22All notable changes to this project will be documented in this file.
33
4+ ## [ 1.9.0] - 2015-7-07
5+ ### Added
6+ - setFromName function [ #175 ] ( https://github.com/sendgrid/sendgrid-nodejs/pull/175 )
7+
48## [ 1.8.0] - 2015-5-06
59### Added
610- addBcc and setBccs functions
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ Add the following to your `package.json` file:
2929 ...
3030 "dependencies" : {
3131 ...
32- "sendgrid" : " ^1.8 .0"
32+ "sendgrid" : " ^1.9 .0"
3333 }
3434}
3535```
Original file line number Diff line number Diff line change 1010 ],
1111 "name" : " sendgrid" ,
1212 "description" : " Official SendGrid NodeJS library." ,
13- "version" : " 1.8 .0" ,
13+ "version" : " 1.9 .0" ,
1414 "homepage" : " http://sendgrid.com" ,
1515 "repository" : {
1616 "type" : " git" ,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ var nock = require('nock');
1212describe ( 'SendGrid' , function ( ) {
1313 it ( 'version should be set' , function ( ) {
1414 var sendgrid = SendGrid ( API_USER , API_KEY ) ;
15- expect ( sendgrid . version ) . to . equal ( "1.8 .0" ) ;
15+ expect ( sendgrid . version ) . to . equal ( "1.9 .0" ) ;
1616 } ) ;
1717
1818 it ( 'should be an instance of SendGrid' , function ( ) {
You can’t perform that action at this time.
0 commit comments