diff options
author | James Turnbull <james@incuna.com> | 2012-03-09 09:34:43 +0000 |
---|---|---|
committer | James Turnbull <james@incuna.com> | 2012-03-09 09:34:43 +0000 |
commit | c71fc06f47c16cbee56167418eeb31b7150079fc (patch) | |
tree | 67a3dd55b5ec532697f208a8387b7e5afc403585 | |
parent | 098c4dd376502d1c7bbdf91d96004bfb029c3f5b (diff) | |
download | django-wkhtmltopdf-c71fc06f47c16cbee56167418eeb31b7150079fc.tar.gz django-wkhtmltopdf-c71fc06f47c16cbee56167418eeb31b7150079fc.tar.bz2 django-wkhtmltopdf-c71fc06f47c16cbee56167418eeb31b7150079fc.zip |
Bumped version to 0.2.1v0.2.1
-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 246563b..4136004 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, 2) +__version__ = (0, 2, 1) def get_version(): return '.'.join(map(str, __version__)) |