From 08c766a7318ab37bf1d77e0c683cd3b00e700877 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Tue, 27 Jul 2021 21:51:07 -0700 Subject: Bump the trunk major version to 14 and clear the release notes. --- pstl/docs/ReleaseNotes.rst | 8 ++++---- pstl/include/pstl/internal/pstl_config.h | 2 +- pstl/test/pstl/version.pass.cpp | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) (limited to 'pstl') diff --git a/pstl/docs/ReleaseNotes.rst b/pstl/docs/ReleaseNotes.rst index f4a15b1..ca840a4 100644 --- a/pstl/docs/ReleaseNotes.rst +++ b/pstl/docs/ReleaseNotes.rst @@ -1,5 +1,5 @@ ======================================= -PSTL 13.0.0 (In-Progress) Release Notes +PSTL 14.0.0 (In-Progress) Release Notes ======================================= .. contents:: @@ -10,7 +10,7 @@ Written by the `PSTL Team `_ .. warning:: - These are in-progress notes for the upcoming pstl 13 release. + These are in-progress notes for the upcoming pstl 14 release. Release notes for previous releases can be found on `the Download Page `_. @@ -18,7 +18,7 @@ Introduction ============ This document contains the release notes for the PSTL parallel algorithms -library, part of the LLVM Compiler Infrastructure, release 13.0.0. Here we +library, part of the LLVM Compiler Infrastructure, release 14.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 `_. @@ -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 `_. -What's New in PSTL 13.0.0? +What's New in PSTL 14.0.0? ========================== New Features diff --git a/pstl/include/pstl/internal/pstl_config.h b/pstl/include/pstl/internal/pstl_config.h index 2c68d28..0616332 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 13000 +#define _PSTL_VERSION 14000 #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 596b893..9780ad7 100644 --- a/pstl/test/pstl/version.pass.cpp +++ b/pstl/test/pstl/version.pass.cpp @@ -8,8 +8,8 @@ #include -static_assert(_PSTL_VERSION == 13000); -static_assert(_PSTL_VERSION_MAJOR == 13); +static_assert(_PSTL_VERSION == 14000); +static_assert(_PSTL_VERSION_MAJOR == 14); static_assert(_PSTL_VERSION_MINOR == 00); static_assert(_PSTL_VERSION_PATCH == 0); -- cgit v1.1