##// END OF EJS Templates
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.
Added file annotation template. Bumped version to 0.6.8. Changelog and changeset are now cleaned with js, it's still very beta.

File last commit:

r193:50a39f92 default
r193:50a39f92 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, 6, 8, '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]))