aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2011-01-11 23:18:57 +0100
committerMarcin Kuzminski <marcin@python-works.com>2011-01-11 23:18:57 +0100
commit0a28239718d6aec4eb0f9d8dc99a04622eac9c81 (patch)
treeffea91b044a0f7263538acf6e500915594d1d56a
parent665c84643ebc9f8bced15cf28c0a667df048d93e (diff)
version bumpv1.1.2
-rw-r--r--docs/changelog.rst28
-rw-r--r--rhodecode/__init__.py4
-rw-r--r--setup.py2
3 files changed, 17 insertions, 17 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 9c7a7285..5fabeed2 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -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 @@ fixes
- 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**)
======================
diff --git a/rhodecode/__init__.py b/rhodecode/__init__.py
index 1cbe11ca..a9e3ee53 100644
--- a/rhodecode/__init__.py
+++ b/rhodecode/__init__.py
@@ -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
diff --git a/setup.py b/setup.py
index b244a3c8..8b280bf9 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ from rhodecode import get_version
requirements = [
"Pylons==1.0.0",
- "WebHelpers>=1.2",
+ "WebHelpers==1.2",
"SQLAlchemy==0.6.5",
"Mako==0.3.6",
"vcs==0.1.10",