summaryrefslogtreecommitdiff
path: root/pstl
diff options
context:
space:
mode:
authorTom Stellard <tstellar@redhat.com>2022-07-26 19:43:55 -0700
committerTom Stellard <tstellar@redhat.com>2022-07-26 21:34:45 -0700
commit809855b56f06dd7182685f88fbbc64111df9339a (patch)
treec4f43461e00fbed8344652b2aa2e205cc424244e /pstl
parent1f8ae9d7e7e4afcc4e76728b28e64941660ca3eb (diff)
downloadllvm-809855b56f06dd7182685f88fbbc64111df9339a.tar.gz
Bump the trunk major version to 16llvmorg-16-init
Diffstat (limited to 'pstl')
-rw-r--r--pstl/docs/ReleaseNotes.rst8
-rw-r--r--pstl/include/pstl/internal/pstl_config.h2
-rw-r--r--pstl/test/pstl/version.pass.cpp4
3 files changed, 7 insertions, 7 deletions
diff --git a/pstl/docs/ReleaseNotes.rst b/pstl/docs/ReleaseNotes.rst
index 5f4e04009cab..ada24a49eba6 100644
--- a/pstl/docs/ReleaseNotes.rst
+++ b/pstl/docs/ReleaseNotes.rst
@@ -1,5 +1,5 @@
=======================================
-PSTL 15.0.0 (In-Progress) Release Notes
+PSTL 16.0.0 (In-Progress) Release Notes
=======================================
.. contents::
@@ -10,7 +10,7 @@ Written by the `PSTL Team <https://pstl.llvm.org>`_
.. warning::
- These are in-progress notes for the upcoming pstl 15 release.
+ These are in-progress notes for the upcoming pstl 16 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 15.0.0. Here we
+library, part of the LLVM Compiler Infrastructure, release 16.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,7 +30,7 @@ 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 15.0.0?
+What's New in PSTL 16.0.0?
==========================
New Features
diff --git a/pstl/include/pstl/internal/pstl_config.h b/pstl/include/pstl/internal/pstl_config.h
index ad0cb5d312b4..de89e7bd977e 100644
--- a/pstl/include/pstl/internal/pstl_config.h
+++ b/pstl/include/pstl/internal/pstl_config.h
@@ -13,7 +13,7 @@
#include <__pstl_config_site>
// The version is XYYZ, where X is major, YY is minor, and Z is patch (i.e. X.YY.Z)
-#define _PSTL_VERSION 15000
+#define _PSTL_VERSION 16000
#define _PSTL_VERSION_MAJOR (_PSTL_VERSION / 1000)
#define _PSTL_VERSION_MINOR ((_PSTL_VERSION % 1000) / 10)
#define _PSTL_VERSION_PATCH (_PSTL_VERSION % 10)
diff --git a/pstl/test/pstl/version.pass.cpp b/pstl/test/pstl/version.pass.cpp
index 3f829c41cca6..8d462e00db63 100644
--- a/pstl/test/pstl/version.pass.cpp
+++ b/pstl/test/pstl/version.pass.cpp
@@ -8,8 +8,8 @@
#include <pstl/internal/pstl_config.h>
-static_assert(_PSTL_VERSION == 15000);
-static_assert(_PSTL_VERSION_MAJOR == 15);
+static_assert(_PSTL_VERSION == 16000);
+static_assert(_PSTL_VERSION_MAJOR == 16);
static_assert(_PSTL_VERSION_MINOR == 00);
static_assert(_PSTL_VERSION_PATCH == 0);