diff options
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-rw-r--r-- | wkhtmltopdf/__init__.py | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8af0c7a..60f0f0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Changelog for django-wkhtmltopdf ================================ +1.1 +--- + +* Removed override_settings code for rewriting ther STAIC and MEDIA URLs as it + was not suitable for production use. It has been replaced with a string + replace for just now, but a proper HTML parser may be required in the future. 1.0.1 ----- diff --git a/wkhtmltopdf/__init__.py b/wkhtmltopdf/__init__.py index 8b1a41b..1cfef84 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__ = '1.0.1' +__version__ = '1.1' |