Skip to content

Update version number for the coming release #2016

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading