aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2011-03-23 20:43:44 +0100
committerMarcin Kuzminski <marcin@python-works.com>2011-03-23 20:43:44 +0100
commitb21e62455436a6f4d4662bc9b6e6864d6efb62a0 (patch)
tree4e0d80646a4ba9a936c71901dcc3ab5f387d0dd8
parent763583b6c8a95463788a48ebfee8278d839323b6 (diff)
changes for release 1.1.7v1.1.7
-rw-r--r--docs/changelog.rst11
-rw-r--r--rhodecode/__init__.py2
2 files changed, 12 insertions, 1 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 1322de61..8534b137 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -3,6 +3,17 @@
Changelog
=========
+1.1.7 (**2011-03-23**)
+======================
+
+news
+----
+
+fixes
+-----
+
+- fixed (again) #136 installation support for FreeBSD
+
1.1.6 (**2011-03-21**)
======================
diff --git a/rhodecode/__init__.py b/rhodecode/__init__.py
index c5b5be69..4c070ff9 100644
--- a/rhodecode/__init__.py
+++ b/rhodecode/__init__.py
@@ -27,7 +27,7 @@
# MA 02110-1301, USA.
import platform
-VERSION = (1, 1, 6)
+VERSION = (1, 1, 7)
__version__ = '.'.join((str(each) for each in VERSION[:4]))
__dbversion__ = 2 #defines current db version for migrations
__platform__ = platform.system()