comparison rhodecode/__init__.py @ 1535:0b8fba8ab90b rhodecode-0.0.1.2.1

fixes for 1.2.1 release
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 08 Oct 2011 16:26:18 +0200
parents bf263968da47
children 752b0a7b7679
comparison
equal deleted inserted replaced
1527:041598fb372e 1535:0b8fba8ab90b
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, see <http://www.gnu.org/licenses/>. 25 # along with this program. If not, see <http://www.gnu.org/licenses/>.
26 import platform 26 import platform
27 27
28 VERSION = (1, 2, 0) 28 VERSION = (1, 2, 1)
29 __version__ = '.'.join((str(each) for each in VERSION[:4])) 29 __version__ = '.'.join((str(each) for each in VERSION[:4]))
30 __dbversion__ = 3 #defines current db version for migrations 30 __dbversion__ = 3 #defines current db version for migrations
31 __platform__ = platform.system() 31 __platform__ = platform.system()
32 __license__ = 'GPLv3' 32 __license__ = 'GPLv3'
33 33