diff --git a/pagedown/__init__.py b/pagedown/__init__.py index 7321a92..418ca37 100644 --- a/pagedown/__init__.py +++ b/pagedown/__init__.py @@ -1 +1 @@ -VERSION = ("1", "0", "5") +VERSION = ("1", "0", "6") diff --git a/setup.py b/setup.py index f6b5f33..737a5a5 100644 --- a/setup.py +++ b/setup.py @@ -4,6 +4,7 @@ from distutils.command.build import build from setuptools.command.develop import develop +from pagedown import VERSION def get_submodules(): if path.exists('.git'): @@ -27,7 +28,7 @@ def run(self): setup( name="django-pagedown", - version="1.0.5", + version=".".join(map(str, VERSION)), author="Timmy O'Mahony", author_email="hey@timmyomahony.com", url="https://github.com/timmyomahony/django-pagedown",