summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2011-04-25 19:06:09 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2011-04-25 19:06:09 -0400
commit15e9b1e454362214638d4333164deb82d9431df1 (patch)
tree067e0b299b5138a7f8e29b2c70a635c142860f42
parentbe238ebf2de60f3bcc0e3cc9323579065a16988b (diff)
downloadaskbot-15e9b1e454362214638d4333164deb82d9431df1.tar.gz
askbot-15e9b1e454362214638d4333164deb82d9431df1.tar.bz2
askbot-15e9b1e454362214638d4333164deb82d9431df1.zip
incremented minor 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 cec0e1ba..5e9b2a42 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, 78)
+VERSION = (0, 6, 79)
#necessary for interoperability of django and coffin
assert_package_compatibility()
diff --git a/setup.py b/setup.py
index 5f2095c5..fee251b4 100644
--- a/setup.py
+++ b/setup.py
@@ -34,7 +34,7 @@ if sys.platform not in WIN_PLATFORMS:
setup(
name = "askbot",
- version = '0.6.78',#remember to manually set this correctly
+ version = '0.6.79',#remember to manually set this correctly
description = 'Question and Answer forum, like StackOverflow, written in python and Django',
packages = find_packages(),
author = 'Evgeny.Fadeev',