aboutsummaryrefslogtreecommitdiff
path: root/pstl
diff options
context:
space:
mode:
authorHans Wennborg <hans@hanshq.net>2019-07-18 11:51:05 +0000
committerHans Wennborg <hans@hanshq.net>2019-07-18 11:51:05 +0000
commit8f5b44aead89a56c6fbf85ccfda03ae1e82ac431 (patch)
tree56db98911746050fa21ff6686b53ea43e72cf652 /pstl
parentc89a3d78f43d81b9cff7b9248772ddf14d21b749 (diff)
downloadllvm-8f5b44aead89a56c6fbf85ccfda03ae1e82ac431.zip
llvm-8f5b44aead89a56c6fbf85ccfda03ae1e82ac431.tar.gz
llvm-8f5b44aead89a56c6fbf85ccfda03ae1e82ac431.tar.bz2
Bump the trunk version to 10.0.0svnllvmorg-10-init
and clear the release notes. llvm-svn: 366427
Diffstat (limited to 'pstl')
-rw-r--r--pstl/docs/ReleaseNotes.rst14
-rw-r--r--pstl/include/pstl/internal/pstl_config.h2
2 files changed, 8 insertions, 8 deletions
diff --git a/pstl/docs/ReleaseNotes.rst b/pstl/docs/ReleaseNotes.rst
index b889c55..dd707ec 100644
--- a/pstl/docs/ReleaseNotes.rst
+++ b/pstl/docs/ReleaseNotes.rst
@@ -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.llvm.org>`_
.. 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 *next* release, not the current one.
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
------------
diff --git a/pstl/include/pstl/internal/pstl_config.h b/pstl/include/pstl/internal/pstl_config.h
index 50267cfd..31dd47a 100644
--- a/pstl/include/pstl/internal/pstl_config.h
+++ b/pstl/include/pstl/internal/pstl_config.h
@@ -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)