Update docs for minimum of Django 1.11, set release version to 0.2.0 and change primary maintainer to gwasser

This commit is contained in:
Garret Wassermann
2017-08-30 15:54:19 -04:00
parent c826c6ace1
commit f5aec2d385
8 changed files with 24 additions and 25 deletions

View File

@ -41,16 +41,16 @@ master_doc = 'index'
# General information about the project.
project = u'django-helpdesk'
copyright = u'2011, Ross Poulton + Contributors'
copyright = u'2011-2017, Ross Poulton + django-helpdesk Contributors'
# 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.1'
version = '0.2'
# The full version, including alpha/beta/rc tags.
release = '0.1'
release = '0.2.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@ -179,7 +179,7 @@ htmlhelp_basename = 'django-helpdeskdoc'
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'django-helpdesk.tex', u'django-helpdesk Documentation',
u'Ross Poulton + Contributors', 'manual'),
u'Ross Poulton + django-helpdesk Contributors', 'manual'),
]
# The name of an image file (relative to this directory) to place at the top of
@ -212,5 +212,5 @@ latex_documents = [
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'django-helpdesk', u'django-helpdesk Documentation',
[u'Ross Poulton + Contributors'], 1)
[u'Ross Poulton + django-helpdesk Contributors'], 1)
]