comparison rhodecode/__init__.py @ 1206:a671db5bdd58 beta

fixed license issue #149
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 04 Apr 2011 20:01:45 +0200
parents f4807acf643d
children 208b15340dfa
comparison
equal deleted inserted replaced
1205:f4807acf643d 1206:a671db5bdd58
9 :created_on: Apr 9, 2010 9 :created_on: Apr 9, 2010
10 :author: marcink 10 :author: marcink
11 :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com> 11 :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
12 :license: GPLv3, see COPYING for more details. 12 :license: GPLv3, see COPYING for more details.
13 """ 13 """
14 # This program is free software; you can redistribute it and/or 14 # This program is free software: you can redistribute it and/or modify
15 # modify it under the terms of the GNU General Public License 15 # it under the terms of the GNU General Public License as published by
16 # as published by the Free Software Foundation; version 2 16 # the Free Software Foundation, either version 3 of the License, or
17 # of the License or (at your opinion) any later version of the license. 17 # (at your option) any later version.
18 # 18 #
19 # This program is distributed in the hope that it will be useful, 19 # This program is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of 20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 # GNU General Public License for more details. 22 # GNU General Public License for more details.
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, see <http://www.gnu.org/licenses/>.
26 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
27 # MA 02110-1301, USA.
28 import platform 26 import platform
29 27
30 VERSION = (1, 2, 0, 'beta') 28 VERSION = (1, 2, 0, 'beta')
31 __version__ = '.'.join((str(each) for each in VERSION[:4])) 29 __version__ = '.'.join((str(each) for each in VERSION[:4]))
32 __dbversion__ = 3 #defines current db version for migrations 30 __dbversion__ = 3 #defines current db version for migrations