summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2011-04-26 19:21:31 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2011-04-26 19:21:31 -0400
commit8b3ab52c3f7255bde44a0bf3534a569055acf1a2 (patch)
tree85aa22cf26af92f682f1693ed60e1a08b8c3fe15
parentcd0aade8c429eeb4221abe6c4f2df6bd8adc94f9 (diff)
downloadaskbot-8b3ab52c3f7255bde44a0bf3534a569055acf1a2.tar.gz
askbot-8b3ab52c3f7255bde44a0bf3534a569055acf1a2.tar.bz2
askbot-8b3ab52c3f7255bde44a0bf3534a569055acf1a2.zip
bumped version
-rw-r--r--askbot/__init__.py2
-rw-r--r--setup.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/askbot/__init__.py b/askbot/__init__.py
index 5e9b2a42..17ca255e 100644
--- a/askbot/__init__.py
+++ b/askbot/__init__.py
@@ -11,7 +11,7 @@ import logging
from askbot import patches
from askbot.deployment.assertions import assert_package_compatibility
-VERSION = (0, 6, 79)
+VERSION = (0, 6, 80)
#necessary for interoperability of django and coffin
assert_package_compatibility()
diff --git a/setup.py b/setup.py
index fee251b4..e5ff3250 100644
--- a/setup.py
+++ b/setup.py
@@ -34,7 +34,7 @@ if sys.platform not in WIN_PLATFORMS:
setup(
name = "askbot",
- version = '0.6.79',#remember to manually set this correctly
+ version = '0.6.80',#remember to manually set this correctly
description = 'Question and Answer forum, like StackOverflow, written in python and Django',
packages = find_packages(),
author = 'Evgeny.Fadeev',