Skip to content

Commit 0de9775

Browse files
Version Bump v4.2.1: Issue #321: Installing 4.2.0 installs the wrong version of python-http-client
1 parent dc6f5db commit 0de9775

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
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+
## [4.2.1] - 2017-08-03 ##
5+
### Fixed
6+
- Issue #321: Installing 4.2.0 installs the wrong version of python-http-client
7+
- Big thanks to [w-](https://github.com/w-) for the heads up!
8+
49
## [4.2.0] - 2017-06-01 ##
510
### Added
611
- Pull #318 Add ability to reset request headers on client attribute

sendgrid/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (4, 2, 0)
1+
version_info = (4, 2, 1)
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
@@ -12,7 +12,7 @@
1212

1313

1414
def getRequires():
15-
deps = ['python_http_client>=2.1.1']
15+
deps = ['python_http_client==2.2.*']
1616
if sys.version_info < (2, 7):
1717
deps.append('unittest2')
1818
elif (3, 0) <= sys.version_info < (3, 2):

0 commit comments

Comments
 (0)