We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c45dd4 commit d199afcCopy full SHA for d199afc
3 files changed
CHANGELOG.md
@@ -1,6 +1,10 @@
1
# Change Log
2
All notable changes to this project will be documented in this file.
3
4
+## [3.0.4] - 2016-07-08 ##
5
+### Added
6
+- Dependency update to fix issue #186
7
+
8
## [3.0.3] - 2016-07-07 ##
9
### Added
10
- Tests now mocked automatically against [prism](https://stoplight.io/prism/)
sendgrid/version.py
@@ -1,2 +1,2 @@
-version_info = (3, 0, 3)
+version_info = (3, 0, 4)
__version__ = '.'.join(str(v) for v in version_info)
setup.py
@@ -11,7 +11,7 @@
11
long_description = open('README.txt').read()
12
13
def getRequires():
14
- deps = ['python_http_client>=2.1.0']
+ deps = ['python_http_client>=2.1.1']
15
if sys.version_info < (2, 7):
16
deps.append('unittest2')
17
elif (3, 0) <= sys.version_info < (3, 2):
0 commit comments