summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askbot/__init__.py2
-rw-r--r--setup.py1
2 files changed, 2 insertions, 1 deletions
diff --git a/askbot/__init__.py b/askbot/__init__.py
index d27f7f7c..0b7e61bb 100644
--- a/askbot/__init__.py
+++ b/askbot/__init__.py
@@ -22,7 +22,7 @@ def get_version():
"""returns version of the askbot app
this version is meaningful for pypi only
"""
- return '0.6.10'
+ return '0.6.11'
def send_mail(
subject_line = None,
diff --git a/setup.py b/setup.py
index e17543f5..50c72ddb 100644
--- a/setup.py
+++ b/setup.py
@@ -9,6 +9,7 @@ import sys
install_requires = [
'django==1.1.2',
'South>=0.7.1',
+ 'oauth2',
'recaptcha-client',
'markdown2',
'html5lib',