diff options
author | Hans Wennborg <hans@hanshq.net> | 2018-08-01 14:14:09 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2018-08-01 14:14:09 +0000 |
commit | a760fe64846558c1aebbc239a573e2000dd8e2a2 (patch) | |
tree | 56c2ccab77b99e81fe1823d73e383bee2a2de338 /libunwind/docs/conf.py | |
parent | 7d02a3177dbbd9ca2b022c76ac19b78e44e53f86 (diff) | |
download | bcm5719-llvm-a760fe64846558c1aebbc239a573e2000dd8e2a2.tar.gz bcm5719-llvm-a760fe64846558c1aebbc239a573e2000dd8e2a2.zip |
Update docs version and clear release notes after 8.0.0 version bump
llvm-svn: 338561
Diffstat (limited to 'libunwind/docs/conf.py')
-rw-r--r-- | libunwind/docs/conf.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libunwind/docs/conf.py b/libunwind/docs/conf.py index c3b51fcb232..35b07a2ea0d 100644 --- a/libunwind/docs/conf.py +++ b/libunwind/docs/conf.py @@ -11,6 +11,7 @@ # serve to show the default. import sys, os +from datetime import date # 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 @@ -40,16 +41,16 @@ master_doc = 'index' # General information about the project. project = u'libunwind' -copyright = u'2011-2017, LLVM Project' +copyright = u'2011-%d, LLVM Project' % date.today().year # 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 = '7.0' +version = '8.0' # The full version, including alpha/beta/rc tags. -release = '7.0' +release = '8.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. |