Skip to content

Commit

Permalink
Merge pull request #2003 from oneapi-src/benie/bump-version
Browse files Browse the repository at this point in the history
Bump version to 0.11.0 on main branch
  • Loading branch information
kbenzie committed Aug 27, 2024
2 parents a4e2219 + cc4d70f commit 608e918
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

cmake_minimum_required(VERSION 3.20.0 FATAL_ERROR)
project(unified-runtime VERSION 0.10.0)
project(unified-runtime VERSION 0.11.0)

# Check if unified runtime is built as a standalone project.
if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR OR UR_STANDALONE_BUILD)
Expand Down
5 changes: 3 additions & 2 deletions include/ur_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
*
* @file ur_api.h
* @version v0.10-r0
* @version v0.11-r0
*
*/
#ifndef UR_API_H_INCLUDED
Expand Down Expand Up @@ -1133,7 +1133,8 @@ typedef enum ur_api_version_t {
UR_API_VERSION_0_8 = UR_MAKE_VERSION(0, 8), ///< version 0.8
UR_API_VERSION_0_9 = UR_MAKE_VERSION(0, 9), ///< version 0.9
UR_API_VERSION_0_10 = UR_MAKE_VERSION(0, 10), ///< version 0.10
UR_API_VERSION_CURRENT = UR_MAKE_VERSION(0, 10), ///< latest known version
UR_API_VERSION_0_11 = UR_MAKE_VERSION(0, 11), ///< version 0.11
UR_API_VERSION_CURRENT = UR_MAKE_VERSION(0, 11), ///< latest known version
/// @cond
UR_API_VERSION_FORCE_UINT32 = 0x7fffffff
/// @endcond
Expand Down
2 changes: 1 addition & 1 deletion include/ur_ddi.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
*
* @file ur_ddi.h
* @version v0.10-r0
* @version v0.11-r0
*
*/
#ifndef UR_DDI_H_INCLUDED
Expand Down
2 changes: 1 addition & 1 deletion include/ur_print.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
*
* @file ur_print.hpp
* @version v0.10-r0
* @version v0.11-r0
*
*/
#ifndef UR_PRINT_HPP
Expand Down
2 changes: 1 addition & 1 deletion scripts/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "Intel One API Unified Runtime API"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = v0.10
PROJECT_NUMBER = v0.11

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
3 changes: 3 additions & 0 deletions scripts/core/platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,9 @@ etors:
- name: "0_10"
value: "$X_MAKE_VERSION( 0, 10 )"
desc: "version 0.10"
- name: "0_11"
value: "$X_MAKE_VERSION( 0, 11 )"
desc: "version 0.11"
--- #--------------------------------------------------------------------------
type: function
desc: "Returns the API version supported by the specified platform"
Expand Down
4 changes: 2 additions & 2 deletions scripts/parse_specs.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
from version import Version


default_version = Version("0.10")
all_versions = [Version(ver) for ver in ["0.6", "0.7", "0.8", "0.9", "0.10"]]
default_version = Version("0.11")
all_versions = [Version(ver) for ver in ["0.6", "0.7", "0.8", "0.9", "0.10", "0.11"]]

"""
preprocess object
Expand Down
2 changes: 1 addition & 1 deletion source/ur_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
*
* @file ur_api.cpp
* @version v0.10-r0
* @version v0.11-r0
*
*/
#include "ur_api.h"
Expand Down

0 comments on commit 608e918

Please sign in to comment.