diff options
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | wkhtmltopdf/__init__.py | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cd0f24..538a4c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Changelog for django-wkhtmltopdf ================================ +2.0.3 +-------- + +* Use shlex for argument splitting (thanks DeadWisdom) +* Skip absolute path substitution where STATIC or MEDIA URL are empty or None + (thanks powderflask) + 2.0.2 ----- diff --git a/wkhtmltopdf/__init__.py b/wkhtmltopdf/__init__.py index 873fb03..a9fe3b7 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.2' +__version__ = '2.0.3' |