Skip to content

Commit

Permalink
Version Bump v5.0.0: fixes #328 and #321
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Aug 11, 2017
1 parent ee72464 commit 671ed3b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log
All notable changes to this project will be documented in this file.

## [5.0.0] - 2017-08-11
### BREAKING CHANGE
- The breaking change actually happened in [version 4.2.1](https://github.com/sendgrid/sendgrid-python/releases/tag/v4.2.1), where I mistakenly applied a patch version bump. See issues #328 and #321 for details.
- This version (5.0.0) replaces error handling via HTTPError from urllib in favor of custom error handling via the [HTTPError class](https://github.com/sendgrid/python-http-client/blob/master/python_http_client/exceptions.py) as was the case in version 4.2.0.

## [4.2.1] - 2017-08-03 ##
### Fixed
- Issue #321: Installing 4.2.0 installs the wrong version of python-http-client
Expand Down
3 changes: 2 additions & 1 deletion docker/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Supported tags and respective `Dockerfile` links
- `v4.2.1`, `latest` [(Dockerfile)](https://github.com/sendgrid/sendgrid-python/blob/master/docker/Dockerfile)
- `v5.0.0`, `latest` [(Dockerfile)](https://github.com/sendgrid/sendgrid-python/blob/master/docker/Dockerfile)
- `v4.2.1`
- `v4.2.0`
- `v4.1.0`
- `v4.0.0`
Expand Down
2 changes: 1 addition & 1 deletion sendgrid/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (4, 2, 1)
version_info = (5, 0, 0)
__version__ = '.'.join(str(v) for v in version_info)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


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

0 comments on commit 671ed3b

Please sign in to comment.