Skip to content

Commit 608e918

Browse files
authored
Merge pull request #2003 from oneapi-src/benie/bump-version
Bump version to 0.11.0 on main branch
2 parents a4e2219 + cc4d70f commit 608e918

File tree

8 files changed

+13
-9
lines changed

8 files changed

+13
-9
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
55

66
cmake_minimum_required(VERSION 3.20.0 FATAL_ERROR)
7-
project(unified-runtime VERSION 0.10.0)
7+
project(unified-runtime VERSION 0.11.0)
88

99
# Check if unified runtime is built as a standalone project.
1010
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR OR UR_STANDALONE_BUILD)

include/ur_api.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
88
*
99
* @file ur_api.h
10-
* @version v0.10-r0
10+
* @version v0.11-r0
1111
*
1212
*/
1313
#ifndef UR_API_H_INCLUDED
@@ -1133,7 +1133,8 @@ typedef enum ur_api_version_t {
11331133
UR_API_VERSION_0_8 = UR_MAKE_VERSION(0, 8), ///< version 0.8
11341134
UR_API_VERSION_0_9 = UR_MAKE_VERSION(0, 9), ///< version 0.9
11351135
UR_API_VERSION_0_10 = UR_MAKE_VERSION(0, 10), ///< version 0.10
1136-
UR_API_VERSION_CURRENT = UR_MAKE_VERSION(0, 10), ///< latest known version
1136+
UR_API_VERSION_0_11 = UR_MAKE_VERSION(0, 11), ///< version 0.11
1137+
UR_API_VERSION_CURRENT = UR_MAKE_VERSION(0, 11), ///< latest known version
11371138
/// @cond
11381139
UR_API_VERSION_FORCE_UINT32 = 0x7fffffff
11391140
/// @endcond

include/ur_ddi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
88
*
99
* @file ur_ddi.h
10-
* @version v0.10-r0
10+
* @version v0.11-r0
1111
*
1212
*/
1313
#ifndef UR_DDI_H_INCLUDED

include/ur_print.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
88
*
99
* @file ur_print.hpp
10-
* @version v0.10-r0
10+
* @version v0.11-r0
1111
*
1212
*/
1313
#ifndef UR_PRINT_HPP

scripts/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "Intel One API Unified Runtime API"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = v0.10
41+
PROJECT_NUMBER = v0.11
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

scripts/core/platform.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,9 @@ etors:
143143
- name: "0_10"
144144
value: "$X_MAKE_VERSION( 0, 10 )"
145145
desc: "version 0.10"
146+
- name: "0_11"
147+
value: "$X_MAKE_VERSION( 0, 11 )"
148+
desc: "version 0.11"
146149
--- #--------------------------------------------------------------------------
147150
type: function
148151
desc: "Returns the API version supported by the specified platform"

scripts/parse_specs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
from version import Version
2222

2323

24-
default_version = Version("0.10")
25-
all_versions = [Version(ver) for ver in ["0.6", "0.7", "0.8", "0.9", "0.10"]]
24+
default_version = Version("0.11")
25+
all_versions = [Version(ver) for ver in ["0.6", "0.7", "0.8", "0.9", "0.10", "0.11"]]
2626

2727
"""
2828
preprocess object

source/ur_api.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
88
*
99
* @file ur_api.cpp
10-
* @version v0.10-r0
10+
* @version v0.11-r0
1111
*
1212
*/
1313
#include "ur_api.h"

0 commit comments

Comments
 (0)