view pylons_app/__init__.py @ 192:f191f99f59c9

full changelog caching, secured changelog with LoginRequired, some minor changes in graph
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 22 May 2010 01:58:36 +0200
parents 3380ca40cdba
children 50a39f923f31
line wrap: on
line source

"""
Hg app, a web based mercurial repository managment based on pylons
"""

VERSION = (0, 6, 0, '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]))