Skip to content

Commit f6d9852

Browse files
Version Bump v5.1.0: Pull #338, Solves #292 __str__
1 parent 4f606ed commit f6d9852

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [5.1.0] - 2017-08-30 ##
5+
### Added
6+
- Pull #338: Allow the `__str__` method for the `Mail` object return an `String` instead of a `NoneType`
7+
- Solves #292: The `__str__` method of the `Mail` class, doesn't actually return anything
8+
- Big thanks to [belfazt](https://github.com/belfazt) for the pull request!
9+
410
## [5.0.1] - 2017-08-29
511
### Fix
612
- Pull #337, fixes issue #366

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-
- `v5.0.1`, `latest` [(Dockerfile)](https://github.com/sendgrid/sendgrid-python/blob/master/docker/Dockerfile)
2+
- `v5.1.0`, `latest` [(Dockerfile)](https://github.com/sendgrid/sendgrid-python/blob/master/docker/Dockerfile)
3+
- `v5.0.1`
34
- `v5.0.0`
45
- `v4.2.1`
56
- `v4.2.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 = (5, 0, 1)
1+
version_info = (5, 1, 0)
22
__version__ = '.'.join(str(v) for v in version_info)

0 commit comments

Comments
 (0)