diff options
author | Max Peterson <max@incuna.com> | 2011-09-06 12:03:02 +0100 |
---|---|---|
committer | Max Peterson <max@incuna.com> | 2011-09-06 12:03:02 +0100 |
commit | 32730858fd15fffdfa8eca9a8572171b84f8a6d8 (patch) | |
tree | 3635a0c02e1c95a9ab3f0a538d728caf2075edd0 /wkhtmltopdf | |
parent | 063d36a38a18cba405dfaca99843b289f75d907d (diff) | |
download | django-wkhtmltopdf-32730858fd15fffdfa8eca9a8572171b84f8a6d8.tar.gz django-wkhtmltopdf-32730858fd15fffdfa8eca9a8572171b84f8a6d8.tar.bz2 django-wkhtmltopdf-32730858fd15fffdfa8eca9a8572171b84f8a6d8.zip |
Bumped version to 0.1.1
Diffstat (limited to 'wkhtmltopdf')
-rw-r--r-- | wkhtmltopdf/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/wkhtmltopdf/__init__.py b/wkhtmltopdf/__init__.py index 16281fe..f6d2a9d 100644 --- a/wkhtmltopdf/__init__.py +++ b/wkhtmltopdf/__init__.py @@ -1 +1,4 @@ from .utils import * +__version__ = (0, 1, 1) +def get_version(): + return '.'.join(map(str, __version__)) |