Skip to content

Commit

Permalink
Version Bump v5.4.1: Bug Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Jun 26, 2018
1 parent 01f676d commit 1ac58c6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 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.4.1] - 2018-06-26 ##
### Fixed
- [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!
- [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!

## [5.4.0] - 2018-06-07 ##
### Added
- [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!
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.4.0`, `latest` [(Dockerfile)](https://github.com/sendgrid/sendgrid-python/blob/master/docker/Dockerfile)
- `v5.4.1`, `latest` [(Dockerfile)](https://github.com/sendgrid/sendgrid-python/blob/master/docker/Dockerfile)
- `v5.4.0`
- `v5.3.0`
- `v5.2.1`
- `v5.2.0`
Expand Down
4 changes: 2 additions & 2 deletions register.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
from io import open

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

readme_rst = open('./README.txt', 'r', encoding='utf-8').read()
replace = '''
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, 4, 0)
version_info = (5, 4, 1)
__version__ = '.'.join(str(v) for v in version_info)

0 comments on commit 1ac58c6

Please sign in to comment.