comparison rhodecode/__init__.py @ 1136:93b980ebee55

changes for release 1.1.5
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 17 Mar 2011 01:13:48 +0100
parents bdc438fb4fe4
children c5af1d3c861f
comparison
equal deleted inserted replaced
1095:3cdacd152b24 1136:93b980ebee55
23 # 23 #
24 # You should have received a copy of the GNU General Public License 24 # You should have received a copy of the GNU General Public License
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 import platform
28 29
29 30 VERSION = (1, 1, 5)
30 VERSION = (1, 1, 4)
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__ = 2 #defines current db version for migrations
33 __platform__ = platform.system()
33 34
34 try: 35 try:
35 from rhodecode.lib.utils import get_current_revision 36 from rhodecode.lib.utils import get_current_revision
36 _rev = get_current_revision() 37 _rev = get_current_revision()
37 except ImportError: 38 except ImportError: