From 8d2717cbe01d2fe4eaeddae056d8440081cb1a01 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Fri, 6 Dec 2024 16:57:55 -0500 Subject: [PATCH] Update version to 2022.7.1 (#1957) --- include/oneapi/dpl/internal/version_impl.h | 2 +- test/general/version.pass.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/oneapi/dpl/internal/version_impl.h b/include/oneapi/dpl/internal/version_impl.h index 46bd36a7427..38a15e5eecf 100644 --- a/include/oneapi/dpl/internal/version_impl.h +++ b/include/oneapi/dpl/internal/version_impl.h @@ -13,7 +13,7 @@ // The library version #define ONEDPL_VERSION_MAJOR 2022 #define ONEDPL_VERSION_MINOR 7 -#define ONEDPL_VERSION_PATCH 0 +#define ONEDPL_VERSION_PATCH 1 #if _ONEDPL___cplusplus >= 202002L && __has_include() # include // The standard C++20 header diff --git a/test/general/version.pass.cpp b/test/general/version.pass.cpp index 5129435a80d..5f89154155d 100644 --- a/test/general/version.pass.cpp +++ b/test/general/version.pass.cpp @@ -26,7 +26,7 @@ static_assert(_PSTL_VERSION_PATCH == 0); static_assert(ONEDPL_VERSION_MAJOR == 2022); static_assert(ONEDPL_VERSION_MINOR == 7); -static_assert(ONEDPL_VERSION_PATCH == 0); +static_assert(ONEDPL_VERSION_PATCH == 1); #include "support/utils.h"