Skip to content

Commit cb02c6e

Browse files
committed
incremented version
1 parent 2b4dc3c commit cb02c6e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

askbot/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import sys
1010
import logging
1111

12-
VERSION = (0, 6, 81)
12+
VERSION = (0, 6, 82)
1313

1414
#necessary for interoperability of django and coffin
1515
try:

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,11 @@
3333
if sys.platform not in WIN_PLATFORMS:
3434
install_requires.append('mysql-python')
3535

36+
import askbot
37+
3638
setup(
3739
name = "askbot",
38-
version = '0.6.77',#remember to manually set this correctly
40+
version = askbot.get_version(),#remember to manually set this correctly
3941
description = 'Question and Answer forum, like StackOverflow, written in python and Django',
4042
packages = find_packages(),
4143
author = 'Evgeny.Fadeev',

0 commit comments

Comments
 (0)