diff --git a/docs/conf.py b/docs/conf.py index b2d2cf9..1553fb0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -35,13 +35,13 @@ django.setup() # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = ['releases', 'sphinx.ext.autodoc', 'celery.contrib.sphinx'] +# configuration for releases extension +releases_issue_uri = 'https://dev.gnuviech-server.de/gvaldap/ticket/%s' +releases_release_uri = 'https://dev.gnuviech-server.de/gvaldap/browser/?rev=%s' + # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] -releases_issue_uri = 'https://dev.gnuviech-server.de/gvaldap/ticket/%s' - -releases_release_uri = 'https://dev.gnuviech-server.de/gvaldap/milestone/%s' - # The suffix of source filenames. source_suffix = '.rst' @@ -53,16 +53,17 @@ master_doc = 'index' # General information about the project. project = u'gvaldap' -copyright = u'2014, 2015 Jan Dittberner' +copyright = u'2014, 2015, 2016 Jan Dittberner' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # -# The short X.Y version. -version = '0.5' # The full version, including alpha/beta/rc tags. -release = '0.5.2' +from gvaldap import __version__ as release + +# The short X.Y version. +version = ".".join(release.split('.')[:2]) # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -103,7 +104,7 @@ pygments_style = 'sphinx' # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -html_theme = 'default' +html_theme = 'alabaster' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the diff --git a/gvaldap/gvaldap/__init__.py b/gvaldap/gvaldap/__init__.py index 62a61ef..613629e 100644 --- a/gvaldap/gvaldap/__init__.py +++ b/gvaldap/gvaldap/__init__.py @@ -1,3 +1,4 @@ """ This is the gvaldap project module. """ +__version__ = "0.6.0.dev1"