aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2010-06-23 00:34:22 +0200
committerMarcin Kuzminski <marcin@python-works.com>2010-06-23 00:34:22 +0200
commitf172a2973c8a360dc02385d99eb3fbb1c77b3a68 (patch)
tree7090941f670b0decb010115cc135547f02a12eb2
parent57b4fa7d9b395c59d5dacf9a6f2d99221ccdee83 (diff)
docs update, version bumpv0.7.8
-rw-r--r--README.rst4
-rw-r--r--pylons_app/__init__.py2
2 files changed, 4 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 61ba074a..0fc5d823 100644
--- a/README.rst
+++ b/README.rst
@@ -10,8 +10,11 @@ Fully customizable, with authentication, permissions. Based on vcs library.
be logged and authenticated + threaded performance unlikely to hgweb
- mako templates let's you cusmotize look and feel of appplication.
- diffs annotations and source code all colored by pygments.
+- mercurial branch graph
- admin interface for performing user/permission managments as well as repository
managment
+- setup project descriptions and info inside built in db for easy, non
+ file-system operations
- added cache with invalidation on push/repo managment for high performance and
always upto date data.
- rss /atom feed customizable
@@ -21,7 +24,6 @@ Fully customizable, with authentication, permissions. Based on vcs library.
**Incoming**
- full permissions per project
-- setup project descriptions and info into db
- git support (when vcs can handle it)
.. note::
diff --git a/pylons_app/__init__.py b/pylons_app/__init__.py
index 3a4fc40c..25a1fe67 100644
--- a/pylons_app/__init__.py
+++ b/pylons_app/__init__.py
@@ -24,7 +24,7 @@ Hg app, a web based mercurial repository managment based on pylons
@author: marcink
"""
-VERSION = (0, 7, 7, 'beta')
+VERSION = (0, 7, 8, 'beta')
__version__ = '.'.join((str(each) for each in VERSION[:4]))