Skip to content

Commit d199afc

Browse files
Version Bump v3.0.4: Fix issue #186
1 parent 4c45dd4 commit d199afc

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
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+
## [3.0.4] - 2016-07-08 ##
5+
### Added
6+
- Dependency update to fix issue #186
7+
48
## [3.0.3] - 2016-07-07 ##
59
### Added
610
- Tests now mocked automatically against [prism](https://stoplight.io/prism/)

sendgrid/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (3, 0, 3)
1+
version_info = (3, 0, 4)
22
__version__ = '.'.join(str(v) for v in version_info)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
long_description = open('README.txt').read()
1212

1313
def getRequires():
14-
deps = ['python_http_client>=2.1.0']
14+
deps = ['python_http_client>=2.1.1']
1515
if sys.version_info < (2, 7):
1616
deps.append('unittest2')
1717
elif (3, 0) <= sys.version_info < (3, 2):

0 commit comments

Comments
 (0)