# HG changeset patch # User Marcin Kuzminski # Date 1318010387 -7200 # Node ID 5383780b5fe4f555c3b7e4eeb800eb18b0265183 # Parent f40c94ace436db3b87b5e357ac060d0ea2894726 version bump diff -r f40c94ace436 -r 5383780b5fe4 docs/changelog.rst --- a/docs/changelog.rst Fri Oct 07 18:39:08 2011 +0200 +++ b/docs/changelog.rst Fri Oct 07 19:59:47 2011 +0200 @@ -3,7 +3,8 @@ Changelog ========= -1.2.0 (**2011-XX-XX**) + +1.3.0 (**XXXX-XX-XX**) ====================== :status: in-progress @@ -12,6 +13,18 @@ news ---- +fixes +----- + + + + +1.2.0 (**2011-10-07**) +====================== + +news +---- + - implemented #47 repository groups - implemented #89 Can setup google analytics code from settings menu - implemented #91 added nicer looking archive urls with more download options diff -r f40c94ace436 -r 5383780b5fe4 rhodecode/__init__.py --- a/rhodecode/__init__.py Fri Oct 07 18:39:08 2011 +0200 +++ b/rhodecode/__init__.py Fri Oct 07 19:59:47 2011 +0200 @@ -25,9 +25,9 @@ # along with this program. If not, see . import platform -VERSION = (1, 2, 0, 'beta') +VERSION = (1, 3, 0, 'beta') __version__ = '.'.join((str(each) for each in VERSION[:4])) -__dbversion__ = 3 #defines current db version for migrations +__dbversion__ = 4 #defines current db version for migrations __platform__ = platform.system() __license__ = 'GPLv3'