comparison rhodecode/__init__.py @ 858:508b3976345e beta

bumped development version
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 18 Dec 2010 15:03:18 +0100
parents b76da6f22e0f
children 4c123ade8485 07a6e8c65526
comparison
equal deleted inserted replaced
856:86cbf8e6d76a 858:508b3976345e
25 # along with this program; if not, write to the Free Software 25 # along with this program; if not, write to the Free Software
26 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 26 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
27 # MA 02110-1301, USA. 27 # MA 02110-1301, USA.
28 28
29 29
30 VERSION = (1, 1, 0, 'beta') 30 VERSION = (1, 2, 0, 'beta')
31 __version__ = '.'.join((str(each) for each in VERSION[:4])) 31 __version__ = '.'.join((str(each) for each in VERSION[:4]))
32 __dbversion__ = 2 #defines current db version for migrations 32 __dbversion__ = 3 #defines current db version for migrations
33 33
34 try: 34 try:
35 from rhodecode.lib.utils import get_current_revision 35 from rhodecode.lib.utils import get_current_revision
36 _rev = get_current_revision() 36 _rev = get_current_revision()
37 except ImportError: 37 except ImportError: