Start changelog for next release
This commit updates the changelog, switches to git code browsing for the release links and uses correct semantic versioning.
This commit is contained in:
parent
41fbb58def
commit
2018520646
3 changed files with 14 additions and 2 deletions
|
@ -1,6 +1,18 @@
|
||||||
Changelog
|
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>`
|
* :release:`0.11.3 <2015-02-21>`
|
||||||
* :bug:`-` fix handling of OpenSSH formatted keys with whitespace in comments
|
* :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
|
* :bug:`-` the ssh key list does not show SSH keys of other users anymore
|
||||||
|
|
|
@ -37,7 +37,7 @@ extensions = ['releases', 'sphinx.ext.autodoc', 'celery.contrib.sphinx']
|
||||||
|
|
||||||
# configuration for releases extension
|
# configuration for releases extension
|
||||||
releases_issue_uri = 'https://dev.gnuviech-server.de/gva/ticket/%s'
|
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.
|
# Add any paths that contain templates here, relative to this directory.
|
||||||
templates_path = ['_templates']
|
templates_path = ['_templates']
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# import celery_app to initialize it
|
# import celery_app to initialize it
|
||||||
from gnuviechadmin.celery import app as celery_app # NOQA
|
from gnuviechadmin.celery import app as celery_app # NOQA
|
||||||
|
|
||||||
__version__ = '0.12.dev1'
|
__version__ = '0.12.0.dev1'
|
||||||
|
|
Loading…
Reference in a new issue