diff options
author | George Hickman <george@ghickman.co.uk> | 2012-05-21 16:31:06 +0100 |
---|---|---|
committer | George Hickman <george@ghickman.co.uk> | 2012-05-21 17:40:15 +0100 |
commit | 9fe90235c8fc41b2450fc585bbe57cfe92f69f7b (patch) | |
tree | 32510453a5122cff28c43a7f5d9982dfeec70f47 /wkhtmltopdf | |
parent | ef5abef14a4baf7c136fe6d0bc3f687fc14800d1 (diff) | |
download | django-wkhtmltopdf-9fe90235c8fc41b2450fc585bbe57cfe92f69f7b.tar.gz django-wkhtmltopdf-9fe90235c8fc41b2450fc585bbe57cfe92f69f7b.tar.bz2 django-wkhtmltopdf-9fe90235c8fc41b2450fc585bbe57cfe92f69f7b.zip |
Bump version to 0.3
* Tidy up the setup.py.
* Remove the old `fread` method.
* Make `__version__` a string.
* Move `__author__` into __init__.py
Diffstat (limited to 'wkhtmltopdf')
-rw-r--r-- | wkhtmltopdf/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wkhtmltopdf/__init__.py b/wkhtmltopdf/__init__.py index 6738053..39b1413 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, 2) -def get_version(): - return '.'.join(map(str, __version__)) +__author__ = 'Incuna Ltd' +__version__ = '0.3' + |