[libunwind] r338561 - Update docs version and clear release notes after 8.0.0 version bump

Hans Wennborg via cfe-commits cfe-commits at lists.llvm.org
Wed Aug 1 07:14:09 PDT 2018


Author: hans
Date: Wed Aug  1 07:14:09 2018
New Revision: 338561

URL: http://llvm.org/viewvc/llvm-project?rev=338561&view=rev
Log:
Update docs version and clear release notes after 8.0.0 version bump

Modified:
    libunwind/trunk/docs/conf.py

Modified: libunwind/trunk/docs/conf.py
URL: http://llvm.org/viewvc/llvm-project/libunwind/trunk/docs/conf.py?rev=338561&r1=338560&r2=338561&view=diff
==============================================================================
--- libunwind/trunk/docs/conf.py (original)
+++ libunwind/trunk/docs/conf.py Wed Aug  1 07:14:09 2018
@@ -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.




More information about the cfe-commits mailing list