Skip to content

Commit 671ed3b

Browse files
Version Bump v5.0.0: fixes #328 and #321
1 parent ee72464 commit 671ed3b

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
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+
## [5.0.0] - 2017-08-11
5+
### BREAKING CHANGE
6+
- 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.
7+
- 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.
8+
49
## [4.2.1] - 2017-08-03 ##
510
### Fixed
611
- Issue #321: Installing 4.2.0 installs the wrong version of python-http-client

docker/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Supported tags and respective `Dockerfile` links
2-
- `v4.2.1`, `latest` [(Dockerfile)](https://github.com/sendgrid/sendgrid-python/blob/master/docker/Dockerfile)
2+
- `v5.0.0`, `latest` [(Dockerfile)](https://github.com/sendgrid/sendgrid-python/blob/master/docker/Dockerfile)
3+
- `v4.2.1`
34
- `v4.2.0`
45
- `v4.1.0`
56
- `v4.0.0`

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, 1)
1+
version_info = (5, 0, 0)
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.2.*']
15+
deps = ['python_http_client==3.0.*']
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)