##// END OF EJS Templates
version bump
marcink -
r940:6c01c12e rhodecode-0.0.1.1.2 default
parent child Browse files
Show More
@@ -3,6 +3,20 b''
3 3 Changelog
4 4 =========
5 5
6 1.1.2 (**2011-01-12**)
7 ======================
8
9 news
10 ----
11
12
13 fixes
14 -----
15
16 - fixes #98 protection against float division of percentage stats
17 - fixed graph bug
18 - forced webhelpers version since it was making troubles during installation
19
6 20 1.1.1 (**2011-01-06**)
7 21 ======================
8 22
@@ -22,20 +36,6 b' fixes'
22 36 - fixed large tooltips problems on main page
23 37 - fixed #92 whoosh indexer is more error proof
24 38
25 1.1.2 (**2011-01-12**)
26 ======================
27
28 news
29 ----
30
31
32 fixes
33 -----
34
35 - fixes #98 protection against float division of percentage stats
36 - fixed graph bug
37 - forced webhelpers version since it was making troubles during installation
38
39 39
40 40 1.1.0 (**2010-12-18**)
41 41 ======================
@@ -8,7 +8,7 b''
8 8
9 9 :created_on: Apr 9, 2010
10 10 :author: marcink
11 :copyright: (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com>
11 :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
12 12 :license: GPLv3, see COPYING for more details.
13 13 """
14 14 # This program is free software; you can redistribute it and/or
@@ -27,7 +27,7 b''
27 27 # MA 02110-1301, USA.
28 28
29 29
30 VERSION = (1, 1, 1)
30 VERSION = (1, 1, 2)
31 31 __version__ = '.'.join((str(each) for each in VERSION[:4]))
32 32 __dbversion__ = 2 #defines current db version for migrations
33 33
@@ -5,7 +5,7 b' from rhodecode import get_version'
5 5
6 6 requirements = [
7 7 "Pylons==1.0.0",
8 "WebHelpers>=1.2",
8 "WebHelpers==1.2",
9 9 "SQLAlchemy==0.6.5",
10 10 "Mako==0.3.6",
11 11 "vcs==0.1.10",
General Comments 0
You need to be logged in to leave comments. Login now