[llvm] r351320 - Bump the trunk version to 9.0.0svn

Hans Wennborg via llvm-commits llvm-commits at lists.llvm.org
Wed Jan 16 02:57:02 PST 2019


Author: hans
Date: Wed Jan 16 02:57:02 2019
New Revision: 351320

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

Modified:
    llvm/trunk/CMakeLists.txt
    llvm/trunk/docs/ReleaseNotes.rst
    llvm/trunk/docs/conf.py
    llvm/trunk/utils/release/build_llvm_package.bat

Modified: llvm/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/CMakeLists.txt?rev=351320&r1=351319&r2=351320&view=diff
==============================================================================
--- llvm/trunk/CMakeLists.txt (original)
+++ llvm/trunk/CMakeLists.txt Wed Jan 16 02:57:02 2019
@@ -12,7 +12,7 @@ if(POLICY CMP0075)
 endif()
 
 if(NOT DEFINED LLVM_VERSION_MAJOR)
-  set(LLVM_VERSION_MAJOR 8)
+  set(LLVM_VERSION_MAJOR 9)
 endif()
 if(NOT DEFINED LLVM_VERSION_MINOR)
   set(LLVM_VERSION_MINOR 0)

Modified: llvm/trunk/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ReleaseNotes.rst?rev=351320&r1=351319&r2=351320&view=diff
==============================================================================
--- llvm/trunk/docs/ReleaseNotes.rst (original)
+++ llvm/trunk/docs/ReleaseNotes.rst Wed Jan 16 02:57:02 2019
@@ -1,12 +1,12 @@
 ========================
-LLVM 8.0.0 Release Notes
+LLVM 9.0.0 Release Notes
 ========================
 
 .. contents::
     :local:
 
 .. warning::
-   These are in-progress notes for the upcoming LLVM 8 release.
+   These are in-progress notes for the upcoming LLVM 9 release.
    Release notes for previous releases can be found on
    `the Download Page <https://releases.llvm.org/download.html>`_.
 
@@ -15,7 +15,7 @@ Introduction
 ============
 
 This document contains the release notes for the LLVM Compiler Infrastructure,
-release 8.0.0.  Here we describe the status of LLVM, including major improvements
+release 9.0.0.  Here we describe the status of LLVM, including major improvements
 from the previous release, improvements in various subprojects of LLVM, and
 some of the current users of the code.  All LLVM releases may be downloaded
 from the `LLVM releases web site <https://llvm.org/releases/>`_.
@@ -40,14 +40,6 @@ Non-comprehensive list of changes in thi
    functionality, or simply have a lot to talk about), see the `NOTE` below
    for adding a new subsection.
 
-* The **llvm-cov** tool can now export lcov trace files using the
-  `-format=lcov` option of the `export` command.
-
-* The add_llvm_loadable_module CMake macro has been removed.  The
-  add_llvm_library macro with the MODULE argument now provides the same
-  functionality.  See `Writing an LLVM Pass
-  <WritingAnLLVMPass.html#setting-up-the-build-environment>`_.
-
 .. NOTE
    If you would like to document a larger change, then you can add a
    subsection about it right here. You can copy the following boilerplate
@@ -82,8 +74,7 @@ Changes to the PowerPC Target
 Changes to the X86 Target
 -------------------------
 
-* Machine model for AMD bdver2 (Piledriver) CPU was added. It is used to support
-  instruction scheduling and other instruction cost heuristics.
+ During this release ...
 
 Changes to the AMDGPU Target
 -----------------------------
@@ -98,14 +89,7 @@ Changes to the AVR Target
 Changes to the WebAssembly Target
 ---------------------------------
 
-The WebAssembly target is no longer "experimental"! It's now built by default,
-rather than needing to be enabled with LLVM_EXPERIMENTAL_TARGETS_TO_BUILD.
-
-The object file format and core C ABI are now considered stable. That said,
-the object file format has an ABI versioning capability, and one anticipated
-use for it will be to add support for returning small structs as multiple
-return values, once the underlying WebAssembly platform itself supports it.
-Additionally, multithreading support is not yet included in the stable ABI.
+ During this release ...
 
 
 Changes to the OCaml bindings
@@ -120,7 +104,7 @@ Changes to the C API
 Changes to the DAG infrastructure
 ---------------------------------
 
-External Open Source Projects Using LLVM 8
+External Open Source Projects Using LLVM 9
 ==========================================
 
 * A project...

Modified: llvm/trunk/docs/conf.py
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/conf.py?rev=351320&r1=351319&r2=351320&view=diff
==============================================================================
--- llvm/trunk/docs/conf.py (original)
+++ llvm/trunk/docs/conf.py Wed Jan 16 02:57:02 2019
@@ -51,9 +51,9 @@ copyright = u'2003-%d, LLVM Project' % d
 # built documents.
 #
 # The short version.
-version = '8'
+version = '9'
 # The full version, including alpha/beta/rc tags.
-release = '8'
+release = '9'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.

Modified: llvm/trunk/utils/release/build_llvm_package.bat
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/release/build_llvm_package.bat?rev=351320&r1=351319&r2=351320&view=diff
==============================================================================
--- llvm/trunk/utils/release/build_llvm_package.bat (original)
+++ llvm/trunk/utils/release/build_llvm_package.bat Wed Jan 16 02:57:02 2019
@@ -26,8 +26,8 @@ set python64_dir=C:\Users\%USERNAME%\App
 
 set revision=%1
 set branch=trunk
-set package_version=8.0.0-r%revision%
-set clang_format_vs_version=8.0.0.%revision%
+set package_version=9.0.0-r%revision%
+set clang_format_vs_version=9.0.0.%revision%
 set build_dir=llvm_package_%revision%
 
 echo Branch: %branch%




More information about the llvm-commits mailing list