[libcxx-commits] [pstl] r366427 - Bump the trunk version to 10.0.0svn

Hans Wennborg via libcxx-commits libcxx-commits at lists.llvm.org
Thu Jul 18 04:51:06 PDT 2019


Author: hans
Date: Thu Jul 18 04:51:05 2019
New Revision: 366427

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

and clear the release notes.

Modified:
    pstl/trunk/docs/ReleaseNotes.rst
    pstl/trunk/include/pstl/internal/pstl_config.h

Modified: pstl/trunk/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/pstl/trunk/docs/ReleaseNotes.rst?rev=366427&r1=366426&r2=366427&view=diff
==============================================================================
--- pstl/trunk/docs/ReleaseNotes.rst (original)
+++ pstl/trunk/docs/ReleaseNotes.rst Thu Jul 18 04:51:05 2019
@@ -1,6 +1,6 @@
-========================================
-PSTL 9.0.0 (In-Progress) Release Notes
-========================================
+=======================================
+PSTL 10.0.0 (In-Progress) Release Notes
+=======================================
 
 .. contents::
    :local:
@@ -10,7 +10,7 @@ Written by the `PSTL Team <https://pstl.
 
 .. warning::
 
-   These are in-progress notes for the upcoming pstl 9 release.
+   These are in-progress notes for the upcoming pstl 10 release.
    Release notes for previous releases can be found on
    `the Download Page <https://releases.llvm.org/download.html>`_.
 
@@ -18,7 +18,7 @@ Introduction
 ============
 
 This document contains the release notes for the PSTL parallel algorithms
-library, part of the LLVM Compiler Infrastructure, release 9.0.0. Here we
+library, part of the LLVM Compiler Infrastructure, release 10.0.0. Here we
 describe the status of the library in some detail, including major improvements
 from the previous release and new feature work. For the general LLVM release
 notes, see `the LLVM documentation <https://llvm.org/docs/ReleaseNotes.html>`_.
@@ -30,8 +30,8 @@ web page, this document applies to the *
 To see the release notes for a specific release, please see the `releases
 page <https://llvm.org/releases/>`_.
 
-What's New in PSTL 9.0.0?
-=========================
+What's New in PSTL 10.0.0?
+==========================
 
 New Features
 ------------

Modified: pstl/trunk/include/pstl/internal/pstl_config.h
URL: http://llvm.org/viewvc/llvm-project/pstl/trunk/include/pstl/internal/pstl_config.h?rev=366427&r1=366426&r2=366427&view=diff
==============================================================================
--- pstl/trunk/include/pstl/internal/pstl_config.h (original)
+++ pstl/trunk/include/pstl/internal/pstl_config.h Thu Jul 18 04:51:05 2019
@@ -11,7 +11,7 @@
 #define _PSTL_CONFIG_H
 
 // The version is XYYZ, where X is major, YY is minor, and Z is patch (i.e. X.YY.Z)
-#define _PSTL_VERSION 9000
+#define _PSTL_VERSION 10000
 #define _PSTL_VERSION_MAJOR (_PSTL_VERSION / 1000)
 #define _PSTL_VERSION_MINOR ((_PSTL_VERSION % 1000) / 10)
 #define _PSTL_VERSION_PATCH (_PSTL_VERSION % 10)




More information about the libcxx-commits mailing list