Skip to content

Commit

Permalink
Version Bump v5.2.0: #335: Permit unicode string values with Substitu…
Browse files Browse the repository at this point in the history
…tion helper
  • Loading branch information
thinkingserious committed Aug 31, 2017
1 parent fae1edb commit 0e151f8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log
All notable changes to this project will be documented in this file.

## [5.2.0] - 2017-08-31 ##
### Added
- Pull #335: Permit unicode string values with Substitution helper
- Big thanks to [Mehron Kugler](https://github.com/mehronkugler) for the pull request!

## [5.1.0] - 2017-08-30 ##
### Added
- Pull #338: Allow the `__str__` method for the `Mail` object return an `String` instead of a `NoneType`
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
- `v5.1.0`, `latest` [(Dockerfile)](https://github.com/sendgrid/sendgrid-python/blob/master/docker/Dockerfile)
- `v5.2.0`, `latest` [(Dockerfile)](https://github.com/sendgrid/sendgrid-python/blob/master/docker/Dockerfile)
- `v5.1.0`
- `v5.0.1`
- `v5.0.0`
- `v4.2.1`
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 = (5, 1, 0)
version_info = (5, 2, 0)
__version__ = '.'.join(str(v) for v in version_info)

0 comments on commit 0e151f8

Please sign in to comment.