summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askbot/__init__.py2
-rw-r--r--setup.py4
2 files changed, 4 insertions, 2 deletions
diff --git a/askbot/__init__.py b/askbot/__init__.py
index 74524337..2b789de5 100644
--- a/askbot/__init__.py
+++ b/askbot/__init__.py
@@ -9,7 +9,7 @@ import smtplib
import sys
import logging
-VERSION = (0, 6, 81)
+VERSION = (0, 6, 82)
#necessary for interoperability of django and coffin
try:
diff --git a/setup.py b/setup.py
index 3347f9e3..31421af5 100644
--- a/setup.py
+++ b/setup.py
@@ -33,9 +33,11 @@ WIN_PLATFORMS = ('win32', 'cygwin',)
if sys.platform not in WIN_PLATFORMS:
install_requires.append('mysql-python')
+import askbot
+
setup(
name = "askbot",
- version = '0.6.77',#remember to manually set this correctly
+ version = askbot.get_version(),#remember to manually set this correctly
description = 'Question and Answer forum, like StackOverflow, written in python and Django',
packages = find_packages(),
author = 'Evgeny.Fadeev',