diff --git a/docs/changelog.rst b/docs/changelog.rst index b597907..5e0e720 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,18 @@ Changelog ========= +* :support:`-` switch licensing to AGPLv3+ +* :support:`-` add a Vagrant setup to ease development +* :support:`-` add example provisioning defined as saltstack states +* :feature:`-` let all celery tasks run asynchronously and move task processing + to signal handlers +* :feature:`-` add unit tests for all the code +* :feature:`-` add proper configuration for coverage, flake8 and pep8 +* :feature:`-` update to Django 1.9.1 +* :support:`-` use gvacommon from separate repository +* :feature:`17` add DNS zone management +* :support:`-` update documentation + * :release:`0.11.3 <2015-02-21>` * :bug:`-` fix handling of OpenSSH formatted keys with whitespace in comments * :bug:`-` the ssh key list does not show SSH keys of other users anymore diff --git a/docs/conf.py b/docs/conf.py index 5fdf12e..5968c1e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -37,7 +37,7 @@ extensions = ['releases', 'sphinx.ext.autodoc', 'celery.contrib.sphinx'] # configuration for releases extension releases_issue_uri = 'https://dev.gnuviech-server.de/gva/ticket/%s' -releases_release_uri = 'https://dev.gnuviech-server.de/gva/milestone/%s' +releases_release_uri = 'https://dev.gnuviech-server.de/gva/browser/?rev=%s' # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] diff --git a/gnuviechadmin/gnuviechadmin/__init__.py b/gnuviechadmin/gnuviechadmin/__init__.py index 60f195b..df34db3 100644 --- a/gnuviechadmin/gnuviechadmin/__init__.py +++ b/gnuviechadmin/gnuviechadmin/__init__.py @@ -1,4 +1,4 @@ # import celery_app to initialize it from gnuviechadmin.celery import app as celery_app # NOQA -__version__ = '0.12.dev1' +__version__ = '0.12.0.dev1'