Skip to content

Commit 2c500f4

Browse files
Version Bump v6.2.0: dependency update
1 parent f53941f commit 2c500f4

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [6.1.0] - 2019-09-12 ##
5+
6+
### Added
7+
- Bumped dependency on python-http-client to [v3.2.1](https://github.com/sendgrid/python-http-client/releases/tag/v3.2.0)
8+
- [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))
9+
- [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))
10+
11+
### Fixed
12+
- [PR #763](https://github.com/sendgrid/sendgrid-python/pull/763): Updated Error Message Section. (BIG thanks to [@FFX01](https://github.com/FFX01))
13+
- [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))
14+
- [PR #839](https://github.com/sendgrid/sendgrid-python/pull/839): Fix for ganalytics json builder.
15+
416
## [6.0.5] - 2019-05-01 ##
517

618
### Fixed

docker/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Supported tags and respective `Dockerfile` links
2-
- `v6.0.5`, `latest` [(Dockerfile)](https://github.com/sendgrid/sendgrid-python/blob/master/docker/Dockerfile)
2+
- `v6.1.0`, `latest` [(Dockerfile)](https://github.com/sendgrid/sendgrid-python/blob/master/docker/Dockerfile)
3+
- `v6.0.5`
34
- `v6.0.3`
45
- `v6.0.0`
56
- `v5.6.0`

sendgrid/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (6, 0, 5)
1+
version_info = (6, 1, 0)
22
__version__ = '.'.join(str(v) for v in version_info)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
exec(f.read())
1010

1111
def getRequires():
12-
deps = ['python_http_client>=3.0']
12+
deps = ['python_http_client>=3.2.1']
1313
return deps
1414

1515

0 commit comments

Comments
 (0)