diff options
Diffstat (limited to 'docs/source')
| -rw-r--r-- | docs/source/conf.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/source/conf.py b/docs/source/conf.py index 12ee0a57..af9d24da 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -14,6 +14,7 @@ import sys import os +import datetime # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the @@ -48,7 +49,8 @@ master_doc = 'index' # General information about the project. project = u'PROJ.4' -copyright = u'1986?-2016' +now = datetime.datetime.now() +copyright = u'1983-{0}'.format(now.year) author = u'Gerald Evenden, Frank Warmerdam, and others' # The version info for the project you're documenting, acts as replacement for @@ -56,9 +58,9 @@ author = u'Gerald Evenden, Frank Warmerdam, and others' # built documents. # # The short X.Y version. -version = u'4.9.3' +version = u'5.0.0' # The full version, including alpha/beta/rc tags. -release = u'4.9.3' +release = u'5.0.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. |
