##// END OF EJS Templates
Fixed bug in repos, added dependencies and bumped version
Fixed bug in repos, added dependencies and bumped version

File last commit:

r246:ca80f8c0 rhodecode-0.0.0.7.6 default
r246:ca80f8c0 rhodecode-0.0.0.7.6 default
Show More
__init__.py
13 lines | 316 B | text/x-python | PythonLexer
"""
Hg app, a web based mercurial repository managment based on pylons
"""
VERSION = (0, 7, 6, 'beta')
__version__ = '.'.join((str(each) for each in VERSION[:4]))
def get_version():
"""
Returns shorter version (digit parts only) as string.
"""
return '.'.join((str(each) for each in VERSION[:3]))