diff options
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | wkhtmltopdf/__init__.py | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ce9ee5..1cd0f24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Changelog for django-wkhtmltopdf ================================ +2.0.2 +----- + +* Fix Unicode encoding issues on Python2 + 2.0.1 ----- diff --git a/wkhtmltopdf/__init__.py b/wkhtmltopdf/__init__.py index fd53123..873fb03 100644 --- a/wkhtmltopdf/__init__.py +++ b/wkhtmltopdf/__init__.py @@ -3,4 +3,4 @@ if 'DJANGO_SETTINGS_MODULE' in os.environ: from .utils import * __author__ = 'Incuna Ltd' -__version__ = '2.0.1' +__version__ = '2.0.2' |