diff --git a/CHANGELOG.md b/CHANGELOG.md index 755e5f00e..4de97e669 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ # Change Log All notable changes to this project will be documented in this file. +## [6.1.0] - 2019-09-12 ## + +### Added +- Bumped dependency on python-http-client to [v3.2.1](https://github.com/sendgrid/python-http-client/releases/tag/v3.2.0) +- [PR #807](https://github.com/sendgrid/sendgrid-python/pull/807): Get version from version.py instead of version.txt. (BIG thanks to [@lipis](https://github.com/lipis)) +- [PR #808](https://github.com/sendgrid/sendgrid-python/pull/808): API key permissions mention in USAGE.md. (BIG thanks to [@int-ua](https://github.com/int-ua)) + +### Fixed +- [PR #763](https://github.com/sendgrid/sendgrid-python/pull/763): Updated Error Message Section. (BIG thanks to [@FFX01](https://github.com/FFX01)) +- [PR #818](https://github.com/sendgrid/sendgrid-python/pull/818): Handle new API in the helper example. (BIG thanks to [@enugentdt](https://github.com/enugentdt)) +- [PR #839](https://github.com/sendgrid/sendgrid-python/pull/839): Fix for ganalytics json builder. + ## [6.0.5] - 2019-05-01 ## ### Fixed diff --git a/docker/README.md b/docker/README.md index 80001d5ab..0467daf15 100644 --- a/docker/README.md +++ b/docker/README.md @@ -1,5 +1,6 @@ # Supported tags and respective `Dockerfile` links - - `v6.0.5`, `latest` [(Dockerfile)](https://github.com/sendgrid/sendgrid-python/blob/master/docker/Dockerfile) + - `v6.1.0`, `latest` [(Dockerfile)](https://github.com/sendgrid/sendgrid-python/blob/master/docker/Dockerfile) + - `v6.0.5` - `v6.0.3` - `v6.0.0` - `v5.6.0` diff --git a/sendgrid/version.py b/sendgrid/version.py index e6b8055a9..44b238fae 100644 --- a/sendgrid/version.py +++ b/sendgrid/version.py @@ -1,2 +1,2 @@ -version_info = (6, 0, 5) +version_info = (6, 1, 0) __version__ = '.'.join(str(v) for v in version_info) diff --git a/setup.py b/setup.py index 77439cac4..de6e0ff5a 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ exec(f.read()) def getRequires(): - deps = ['python_http_client>=3.0'] + deps = ['python_http_client>=3.2.1'] return deps