Skip to content

Commit

Permalink
Version Bump v6.2.0: dependency update
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Sep 12, 2019
1 parent f53941f commit 2c500f4
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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
- `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`
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 = (6, 0, 5)
version_info = (6, 1, 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 @@ -9,7 +9,7 @@
exec(f.read())

def getRequires():
deps = ['python_http_client>=3.0']
deps = ['python_http_client>=3.2.1']
return deps


Expand Down

0 comments on commit 2c500f4

Please sign in to comment.