Mercurial > public > src > rhodecode
changeset 2189:7172d88f3cee beta
version bump
author | Marcin Kuzminski <marcin@python-works.com> |
---|---|
date | Fri, 02 Mar 2012 22:02:44 +0200 |
parents | 6a97bbdded09 |
children | 6fdc3b25bc7c |
files | docs/changelog.rst rhodecode/__init__.py |
diffstat | 2 files changed, 13 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/docs/changelog.rst Fri Mar 02 21:56:00 2012 +0200 +++ b/docs/changelog.rst Fri Mar 02 22:02:44 2012 +0200 @@ -4,7 +4,7 @@ ========= -1.3.3 (**2012-XX-XX**) +1.3.4 (**2012-XX-XX**) ---------------------- :status: in-progress @@ -17,6 +17,16 @@ fixes +++++ +1.3.3 (**2012-03-02**) +---------------------- + +news +++++ + + +fixes ++++++ + - fixed some python2.5 compatibility issues - fixed issues with removed repos was accidentally added as groups, after full rescan of paths @@ -31,6 +41,7 @@ - fixed missing commit after hook delete - fixed #372 issues with git operation detection that caused a security issue for git repos + 1.3.2 (**2012-02-28**) ----------------------
--- a/rhodecode/__init__.py Fri Mar 02 21:56:00 2012 +0200 +++ b/rhodecode/__init__.py Fri Mar 02 22:02:44 2012 +0200 @@ -26,7 +26,7 @@ import sys import platform -VERSION = (1, 3, 3, 'beta') +VERSION = (1, 3, 4, 'beta') __version__ = '.'.join((str(each) for each in VERSION[:4])) __dbversion__ = 5 # defines current db version for migrations __platform__ = platform.system()