[llvm] r275827 - Bump the trunk version to 4.0.0svn.

Hans Wennborg via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 18 10:51:05 PDT 2016


Author: hans
Date: Mon Jul 18 12:51:04 2016
New Revision: 275827

URL: http://llvm.org/viewvc/llvm-project?rev=275827&view=rev
Log:
Bump the trunk version to 4.0.0svn.

Differential Revision: https://reviews.llvm.org/D21821

Modified:
    llvm/trunk/CMakeLists.txt
    llvm/trunk/docs/DeveloperPolicy.rst
    llvm/trunk/docs/conf.py

Modified: llvm/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/CMakeLists.txt?rev=275827&r1=275826&r2=275827&view=diff
==============================================================================
--- llvm/trunk/CMakeLists.txt (original)
+++ llvm/trunk/CMakeLists.txt Mon Jul 18 12:51:04 2016
@@ -21,10 +21,10 @@ if (POLICY CMP0051)
 endif()
 
 if(NOT DEFINED LLVM_VERSION_MAJOR)
-  set(LLVM_VERSION_MAJOR 3)
+  set(LLVM_VERSION_MAJOR 4)
 endif()
 if(NOT DEFINED LLVM_VERSION_MINOR)
-  set(LLVM_VERSION_MINOR 9)
+  set(LLVM_VERSION_MINOR 0)
 endif()
 if(NOT DEFINED LLVM_VERSION_PATCH)
   set(LLVM_VERSION_PATCH 0)

Modified: llvm/trunk/docs/DeveloperPolicy.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/DeveloperPolicy.rst?rev=275827&r1=275826&r2=275827&view=diff
==============================================================================
--- llvm/trunk/docs/DeveloperPolicy.rst (original)
+++ llvm/trunk/docs/DeveloperPolicy.rst Mon Jul 18 12:51:04 2016
@@ -510,8 +510,7 @@ for llvm users and not imposing a big bu
 * Additions and changes to the IR should be reflected in
   ``test/Bitcode/compatibility.ll``.
 
-* The bitcode format produced by a X.Y release will be readable by all
-  following X.Z releases and the (X+1).0 release.
+* The current LLVM version supports loading any bitcode since version 3.0.
 
 * After each X.Y release, ``compatibility.ll`` must be copied to
   ``compatibility-X.Y.ll``. The corresponding bitcode file should be assembled

Modified: llvm/trunk/docs/conf.py
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/conf.py?rev=275827&r1=275826&r2=275827&view=diff
==============================================================================
--- llvm/trunk/docs/conf.py (original)
+++ llvm/trunk/docs/conf.py Mon Jul 18 12:51:04 2016
@@ -48,9 +48,9 @@ copyright = u'2003-%d, LLVM Project' % d
 # built documents.
 #
 # The short X.Y version.
-version = '3.9'
+version = '4.0'
 # The full version, including alpha/beta/rc tags.
-release = '3.9'
+release = '4.0'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.




More information about the llvm-commits mailing list