comparison rhodecode/__init__.py @ 2044:fa74e91695a0

merge
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 26 Feb 2012 21:56:03 +0200
parents dbc82e3362a2 b64b809a3cae
children 8fbb1d250804
comparison
equal deleted inserted replaced
2042:e2b866093cba 2044:fa74e91695a0
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) 29 VERSION = (1, 3, 1)
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