Skip to content

Commit

Permalink
Version Bump v4.2.1: Issue #321: Installing 4.2.0 installs the wrong …
Browse files Browse the repository at this point in the history
…version of python-http-client
  • Loading branch information
thinkingserious committed Aug 4, 2017
1 parent dc6f5db commit 0de9775
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,11 @@
# Change Log
All notable changes to this project will be documented in this file.

## [4.2.1] - 2017-08-03 ##
### Fixed
- Issue #321: Installing 4.2.0 installs the wrong version of python-http-client
- Big thanks to [w-](https://github.com/w-) for the heads up!

## [4.2.0] - 2017-06-01 ##
### Added
- Pull #318 Add ability to reset request headers on client attribute
Expand Down
2 changes: 1 addition & 1 deletion sendgrid/version.py
@@ -1,2 +1,2 @@
version_info = (4, 2, 0)
version_info = (4, 2, 1)
__version__ = '.'.join(str(v) for v in version_info)
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -12,7 +12,7 @@


def getRequires():
deps = ['python_http_client>=2.1.1']
deps = ['python_http_client==2.2.*']
if sys.version_info < (2, 7):
deps.append('unittest2')
elif (3, 0) <= sys.version_info < (3, 2):
Expand Down

0 comments on commit 0de9775

Please sign in to comment.