# HG changeset patch # User Marcin Kuzminski # Date 2012-02-28 18:56:32 # Node ID de372c3a329e0b353bdb093dd50d3cf6ecf7c8e4 # Parent c9adf2a4929a582c01aef43f0c5e02b3684e71ff version bump diff --git a/docs/changelog.rst b/docs/changelog.rst --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,7 +4,7 @@ Changelog ========= -1.3.2 (**2012-XX-XX**) +1.3.3 (**2012-XX-XX**) ---------------------- :status: in-progress @@ -17,6 +17,16 @@ news fixes +++++ +1.3.2 (**2012-02-28**) +---------------------- + +news +++++ + + +fixes ++++++ + - fixed git protocol issues with repos-groups - fixed git remote repos validator that prevented from cloning remote git repos - fixes #370 ending slashes fixes for repo and groups diff --git a/rhodecode/__init__.py b/rhodecode/__init__.py --- a/rhodecode/__init__.py +++ b/rhodecode/__init__.py @@ -26,7 +26,7 @@ import sys import platform -VERSION = (1, 3, 2, 'beta') +VERSION = (1, 3, 3, 'beta') __version__ = '.'.join((str(each) for each in VERSION[:4])) __dbversion__ = 5 # defines current db version for migrations __platform__ = platform.system()