diff --git a/documentation/library_guide/conf.py b/documentation/library_guide/conf.py index f37a9d62646..1dfdab766f4 100644 --- a/documentation/library_guide/conf.py +++ b/documentation/library_guide/conf.py @@ -37,7 +37,7 @@ author = 'Intel' # The full version, including alpha/beta/rc tags -release = '2022.3.0' +release = '2022.6.0' rst_epilog = """ .. include:: /variables.txt diff --git a/include/oneapi/dpl/pstl/onedpl_config.h b/include/oneapi/dpl/pstl/onedpl_config.h index 1d86fbd6ce0..7eea53a7110 100644 --- a/include/oneapi/dpl/pstl/onedpl_config.h +++ b/include/oneapi/dpl/pstl/onedpl_config.h @@ -24,7 +24,7 @@ #endif #define ONEDPL_VERSION_MAJOR 2022 -#define ONEDPL_VERSION_MINOR 5 +#define ONEDPL_VERSION_MINOR 6 #define ONEDPL_VERSION_PATCH 0 #if defined(ONEDPL_FPGA_DEVICE) diff --git a/test/general/version.pass.cpp b/test/general/version.pass.cpp index a78c810070e..96348cc5954 100644 --- a/test/general/version.pass.cpp +++ b/test/general/version.pass.cpp @@ -29,7 +29,7 @@ static_assert(_PSTL_VERSION_PATCH == 0); #endif static_assert(ONEDPL_VERSION_MAJOR == 2022); -static_assert(ONEDPL_VERSION_MINOR == 5); +static_assert(ONEDPL_VERSION_MINOR == 6); static_assert(ONEDPL_VERSION_PATCH == 0); int main() {