changeset 940:6c01c12eafb8 rhodecode-0.0.1.1.2

version bump
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 11 Jan 2011 23:18:57 +0100
parents c165349fdd0e
children 967f5182a74e
files docs/changelog.rst rhodecode/__init__.py setup.py
diffstat 3 files changed, 17 insertions(+), 17 deletions(-) [+]
line wrap: on
line diff
--- a/docs/changelog.rst	Tue Jan 11 23:06:41 2011 +0100
+++ b/docs/changelog.rst	Tue Jan 11 23:18:57 2011 +0100
@@ -3,6 +3,20 @@
 Changelog
 =========
 
+1.1.2 (**2011-01-12**)
+======================
+
+news
+----
+
+
+fixes
+-----
+
+- fixes #98 protection against float division of percentage stats
+- fixed graph bug
+- forced webhelpers version since it was making troubles during installation 
+
 1.1.1 (**2011-01-06**)
 ======================
  
@@ -22,20 +36,6 @@
 - fixed large tooltips problems on main page
 - fixed #92 whoosh indexer is more error proof
 
-1.1.2 (**2011-01-12**)
-======================
-
-news
-----
-
-
-fixes
------
-
-- fixes #98 protection against float division of percentage stats
-- fixed graph bug
-- forced webhelpers version since it was making troubles during installation 
-
 
 1.1.0 (**2010-12-18**)
 ======================
--- a/rhodecode/__init__.py	Tue Jan 11 23:06:41 2011 +0100
+++ b/rhodecode/__init__.py	Tue Jan 11 23:18:57 2011 +0100
@@ -8,7 +8,7 @@
 
     :created_on: Apr 9, 2010
     :author: marcink
-    :copyright: (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com>    
+    :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>    
     :license: GPLv3, see COPYING for more details.
 """
 # This program is free software; you can redistribute it and/or
@@ -27,7 +27,7 @@
 # MA  02110-1301, USA.
 
 
-VERSION = (1, 1, 1)
+VERSION = (1, 1, 2)
 __version__ = '.'.join((str(each) for each in VERSION[:4]))
 __dbversion__ = 2 #defines current db version for migrations
 
--- a/setup.py	Tue Jan 11 23:06:41 2011 +0100
+++ b/setup.py	Tue Jan 11 23:18:57 2011 +0100
@@ -5,7 +5,7 @@
 
 requirements = [
         "Pylons==1.0.0",
-        "WebHelpers>=1.2",
+        "WebHelpers==1.2",
         "SQLAlchemy==0.6.5",
         "Mako==0.3.6",
         "vcs==0.1.10",