aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Turnbull <james@incuna.com>2012-11-14 17:18:35 +0000
committerJames Turnbull <james@incuna.com>2012-11-14 17:18:35 +0000
commit58018c55186016f5dcf675fe48c883758edbbfa7 (patch)
tree979ad2f7c9733f5ba824fe6a1133bf89c88fa3b6
parent18db05d5a4e90c65634add9b55d7561b281d747d (diff)
downloaddjango-wkhtmltopdf-58018c55186016f5dcf675fe48c883758edbbfa7.tar.gz
django-wkhtmltopdf-58018c55186016f5dcf675fe48c883758edbbfa7.tar.bz2
django-wkhtmltopdf-58018c55186016f5dcf675fe48c883758edbbfa7.zip
Bumped versionv1.1
-rw-r--r--CHANGELOG.md6
-rw-r--r--wkhtmltopdf/__init__.py2
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'