# HG changeset patch # User Marcin Kuzminski # Date 2010-11-11 14:31:03 # Node ID 9c8a817462fe76d1ec45e10420183de9adde8e07 # Parent e9a0ed84aa6fe63c23d3f75ef0d0d733d8cf1d02 small fixes to docs, and setup file diff --git a/docs/changelog.rst b/docs/changelog.rst --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -18,6 +18,23 @@ 1.1.0 (**2010-XX-XX**) - gui optimizations, fixed application width to 1024px - numerous small bugfixes +1.0.2 (**2010-11-XX**) +---------------------- + +- fixed #59 missing graph.js +- fixed repo_size crash when repository had broken symlinks +- fixed python2.5 crashes. +- tested under python2.7 +- bumped sqlalchemy and celery versions + +1.0.1 (**2010-11-10**) +---------------------- + +- fixed #53 python2.5 incompatible enumerate calls +- fixed #52 disable mercurial extension for web +- fixed #51 deleting repositories don't delete it's dependent objects +- small css updated + 1.0.0 (**2010-11-02**) ---------------------- diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -34,7 +34,8 @@ data_files = [] #additional files that goes into package itself package_data = {'rhodecode': ['i18n/*/LC_MESSAGES/*.mo', ], } -description = 'Mercurial repository serving and browsing app' +description = ('Mercurial and Git repository browser/management with ' + 'build in push/pull server and full text search') #long description try: readme_file = 'README.rst' @@ -59,7 +60,7 @@ setup( version=get_version(), description=description, long_description=long_description, - keywords='rhodiumcode mercurial web hgwebdir replacement serving hgweb rhodecode', + keywords='rhodiumcode mercurial web hgwebdir gitweb git replacement serving hgweb rhodecode', license='BSD', author='Marcin Kuzminski', author_email='marcin@python-works.com',