diff --git a/CHANGELOG.md b/CHANGELOG.md index 34d8e504f..4fd22ddd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Change Log All notable changes to this project will be documented in this file. +## [5.2.1] - 2017-10-21 ## +### Fixed +- Pull #364: Install prism with non superuser account +- Big thanks to [meahow](https://github.com/meahow) for the pull request! + ## [5.2.0] - 2017-08-31 ## ### Added - Pull #335: Permit unicode string values with Substitution helper diff --git a/docker/README.md b/docker/README.md index 55d337f81..4282d6bd0 100644 --- a/docker/README.md +++ b/docker/README.md @@ -1,5 +1,6 @@ # Supported tags and respective `Dockerfile` links - - `v5.2.0`, `latest` [(Dockerfile)](https://github.com/sendgrid/sendgrid-python/blob/master/docker/Dockerfile) + - `v5.2.1`, `latest` [(Dockerfile)](https://github.com/sendgrid/sendgrid-python/blob/master/docker/Dockerfile) + - `v5.2.0` - `v5.1.0` - `v5.0.1` - `v5.0.0` diff --git a/sendgrid/version.py b/sendgrid/version.py index 60342c7f5..728e76b12 100644 --- a/sendgrid/version.py +++ b/sendgrid/version.py @@ -1,2 +1,2 @@ -version_info = (5, 2, 0) +version_info = (5, 2, 1) __version__ = '.'.join(str(v) for v in version_info)