Skip to content

Commit 338fa0d

Browse files
Version Bump 1.5.14
1 parent 36525d3 commit 338fa0d

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [1.5.14] - 2015-11-09 ##
5+
6+
### Fixed ###
7+
- Fix "Mail uses old-style class again" [144](https://github.com/sendgrid/sendgrid-python/issues/144)
8+
49
## [1.5.13] - 2015-10-28 ##
510

611
### Fixed ###

sendgrid/message.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from smtpapi import SMTPAPIHeader
99

1010

11-
class Mail():
11+
class Mail(object):
1212

1313
"""SendGrid Message."""
1414

sendgrid/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (1, 5, 13)
1+
version_info = (1, 5, 14)
22
__version__ = '.'.join(str(v) for v in version_info)

0 commit comments

Comments
 (0)