From 33713c9071f8b9be6ad22b43ee09e63e44e3352c Mon Sep 17 00:00:00 2001 From: Markus Holtermann Date: Fri, 8 Nov 2013 00:50:48 +0100 Subject: [PATCH] Release 0.2 --- dynamic_forms/__init__.py | 2 +- setup.py | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/dynamic_forms/__init__.py b/dynamic_forms/__init__.py index 22affdc..157a09b 100644 --- a/dynamic_forms/__init__.py +++ b/dynamic_forms/__init__.py @@ -2,7 +2,7 @@ from __future__ import unicode_literals -VERSION = (0, 2, 0, 'alpha', 0) +VERSION = (0, 2, 0, 'final', 0) def get_version(full=True): diff --git a/setup.py b/setup.py index 884b2e0..6a07abe 100644 --- a/setup.py +++ b/setup.py @@ -10,12 +10,9 @@ def read(*parts): return fp.read() -from dynamic_forms import get_version - - setup( name='django-dynamic-forms', - version=get_version(), + version='0.2', description='django-dynamic-forms is a reusable Django application to create and configure forms through the admin.', long_description=read('README.rst'), author='Markus Holtermann',