Skip to content

Commit

Permalink
Version Bump v1.3.0: #19 Adds setBatchId method
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Apr 6, 2017
1 parent cedcae4 commit 165dd4c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log
All notable changes to this project will be documented in this file.

## [1.3.0] - 2017-4-6
### Added
- #19 Adds setBatchId method
- Thanks to [mell0kat](https://github.com/mell0kat) for the PR!

## [1.2.0] - 2015-7-19
### Added
- IP Pool support
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Add the following to your `package.json` file:
...
"dependencies": {
...
"smtpapi": "1.2.0"
"smtpapi": "1.3.0"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "smtpapi",
"version": "1.2.0",
"version": "1.3.0",
"description": "Build SendGrid X-SMTPAPI headers in nodejs.",
"main": "lib/main.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion test/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ describe('smtapi', function() {
});

it('version should be set', function() {
header.version.should.eql("1.2.0");
header.version.should.eql("1.3.0");
});

it('has a jsonString method', function() {
Expand Down

0 comments on commit 165dd4c

Please sign in to comment.