diff options
author | Max Peterson <max@incuna.com> | 2011-09-06 12:09:17 +0100 |
---|---|---|
committer | Max Peterson <max@incuna.com> | 2011-09-06 12:09:17 +0100 |
commit | 4bb82b5ab29a9f30dbecd9f1a6e45a5d900e8a9d (patch) | |
tree | 322bb2c6829e506f04b2fb6cf74b1dc9c5d134e5 /wkhtmltopdf | |
parent | 0fa698a30787eeb5843d3f63620005fcc97ad909 (diff) | |
download | django-wkhtmltopdf-4bb82b5ab29a9f30dbecd9f1a6e45a5d900e8a9d.tar.gz django-wkhtmltopdf-4bb82b5ab29a9f30dbecd9f1a6e45a5d900e8a9d.tar.bz2 django-wkhtmltopdf-4bb82b5ab29a9f30dbecd9f1a6e45a5d900e8a9d.zip |
Bumped version to 0.1.1
Diffstat (limited to 'wkhtmltopdf')
-rw-r--r-- | wkhtmltopdf/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wkhtmltopdf/__init__.py b/wkhtmltopdf/__init__.py index 4fd8e77..cee4da8 100644 --- a/wkhtmltopdf/__init__.py +++ b/wkhtmltopdf/__init__.py @@ -2,6 +2,6 @@ import os if 'DJANGO_SETTINGS_MODULE' in os.environ: from .utils import * -__version__ = (0, 1) +__version__ = (0, 1, 1) def get_version(): return '.'.join(map(str, __version__)) |