Skip to content

Commit 1ac58c6

Browse files
Version Bump v5.4.1: Bug Fixes
1 parent 01f676d commit 1ac58c6

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

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

4+
## [5.4.1] - 2018-06-26 ##
5+
### Fixed
6+
- [PR #585](https://github.com/sendgrid/sendgrid-python/pull/585): Fix typo in `mail_example.py`. Big thanks to [Anurag Anand](https://github.com/theanuraganand) for the PR!
7+
- [PR #583](https://github.com/sendgrid/sendgrid-python/pull/585): Fix `Personalization.substitutions` setter. Trying to set substitutions directly rather than with add_substitution was causing an infinite regress. Big thanks to [Richard Nias](https://github.com/richardnias) for the PR!
8+
49
## [5.4.0] - 2018-06-07 ##
510
### Added
611
- [PR #384](https://github.com/sendgrid/sendgrid-python/pull/384): Adds how to set up domain whitelabel and how to view email statistics. Big thanks to [Aditya Tandon](https://github.com/adityatandon007) for the PR!

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.4.0`, `latest` [(Dockerfile)](https://github.com/sendgrid/sendgrid-python/blob/master/docker/Dockerfile)
2+
- `v5.4.1`, `latest` [(Dockerfile)](https://github.com/sendgrid/sendgrid-python/blob/master/docker/Dockerfile)
3+
- `v5.4.0`
34
- `v5.3.0`
45
- `v5.2.1`
56
- `v5.2.0`

register.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
from io import open
33

44
output = pypandoc.convert('README.md', 'rst')
5-
with open('README.txt' 'w+') as f:
6-
f.write(str(output.encode('utf-8')))
5+
with open('README.txt', 'w+') as f:
6+
f.write(output)
77

88
readme_rst = open('./README.txt', 'r', encoding='utf-8').read()
99
replace = '''

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, 4, 0)
1+
version_info = (5, 4, 1)
22
__version__ = '.'.join(str(v) for v in version_info)

0 commit comments

Comments
 (0)