Skip to content

Commit

Permalink
Update ONEDPL_VERSION and ONEDPL_SPEC_VERSION numbers for the coming …
Browse files Browse the repository at this point in the history
…release (#2016)
  • Loading branch information
timmiesmith authored Feb 6, 2025
1 parent a52be1b commit ad4c54e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion documentation/library_guide/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
author = 'Intel'

# The full version, including alpha/beta/rc tags
release = '2022.7.0'
release = '2022.8.0'

rst_epilog = """
.. include:: /variables.txt
Expand Down
7 changes: 5 additions & 2 deletions include/oneapi/dpl/internal/version_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@

// The library version
#define ONEDPL_VERSION_MAJOR 2022
#define ONEDPL_VERSION_MINOR 7
#define ONEDPL_VERSION_PATCH 1
#define ONEDPL_VERSION_MINOR 8
#define ONEDPL_VERSION_PATCH 0

// The oneAPI Specification version this implementation is compliant with
#define ONEDPL_SPEC_VERSION 104

#if _ONEDPL___cplusplus >= 202002L && __has_include(<version>)
# include <version> // The standard C++20 header
Expand Down
4 changes: 2 additions & 2 deletions test/general/version.pass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ static_assert(_PSTL_VERSION_PATCH == 0);
#endif

static_assert(ONEDPL_VERSION_MAJOR == 2022);
static_assert(ONEDPL_VERSION_MINOR == 7);
static_assert(ONEDPL_VERSION_PATCH == 1);
static_assert(ONEDPL_VERSION_MINOR == 8);
static_assert(ONEDPL_VERSION_PATCH == 0);

#include "support/utils.h"

Expand Down

0 comments on commit ad4c54e

Please sign in to comment.