comparison rhodecode/__init__.py @ 2040:b64b809a3cae beta

version bump for beta
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 26 Feb 2012 21:31:04 +0200
parents 7e979933ffec
children fa74e91695a0 6aa328b903a5
comparison
equal deleted inserted replaced
2036:872d5f0aafe4 2040:b64b809a3cae
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, see <http://www.gnu.org/licenses/>. 25 # along with this program. If not, see <http://www.gnu.org/licenses/>.
26 import sys 26 import sys
27 import platform 27 import platform
28 28
29 VERSION = (1, 3, 0, 'beta') 29 VERSION = (1, 3, 1, 'beta')
30 __version__ = '.'.join((str(each) for each in VERSION[:4])) 30 __version__ = '.'.join((str(each) for each in VERSION[:4]))
31 __dbversion__ = 5 # defines current db version for migrations 31 __dbversion__ = 5 # defines current db version for migrations
32 __platform__ = platform.system() 32 __platform__ = platform.system()
33 __license__ = 'GPLv3' 33 __license__ = 'GPLv3'
34 __py_version__ = sys.version_info 34 __py_version__ = sys.version_info