comparison rhodecode/__init__.py @ 569:000b675e7c1d

bumped version, some spelling fixes
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 10 Oct 2010 17:27:46 +0200
parents 1e757ac98988
children 42a87338035a
comparison
equal deleted inserted replaced
568:5f481e4e888b 569:000b675e7c1d
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # encoding: utf-8 2 # encoding: utf-8
3 # Hg app, a web based mercurial repository managment based on pylons 3 # RhodeCode, a web based repository management based on pylons
4 # Copyright (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com> 4 # Copyright (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com>
5 # 5 #
6 # This program is free software; you can redistribute it and/or 6 # This program is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU General Public License 7 # modify it under the terms of the GNU General Public License
8 # as published by the Free Software Foundation; version 2 8 # as published by the Free Software Foundation; version 2
17 # along with this program; if not, write to the Free Software 17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19 # MA 02110-1301, USA. 19 # MA 02110-1301, USA.
20 """ 20 """
21 Created on April 9, 2010 21 Created on April 9, 2010
22 Hg app, a web based mercurial repository managment based on pylons 22 RhodeCode, a web based repository management based on pylons
23 versioning implementation: http://semver.org/ 23 versioning implementation: http://semver.org/
24 @author: marcink 24 @author: marcink
25 """ 25 """
26 26
27 VERSION = (0, 8, 5, 'beta') 27 VERSION = (1, 0, 0, 'rc1')
28 28
29 __version__ = '.'.join((str(each) for each in VERSION[:4])) 29 __version__ = '.'.join((str(each) for each in VERSION[:4]))
30 30
31 def get_version(): 31 def get_version():
32 """ 32 """