From 1abd0cd5eb18d55f1302558bb59f75bafaa9d7a7 Mon Sep 17 00:00:00 2001 From: Lukasz Dorau Date: Wed, 18 Sep 2024 14:29:36 +0200 Subject: [PATCH] Update UMF version to 0.10.0 in headers, CI and docs config file --- .github/workflows/basic.yml | 2 +- include/umf/base.h | 2 +- scripts/docs_config/conf.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/basic.yml b/.github/workflows/basic.yml index 232f96869..3580c3621 100644 --- a/.github/workflows/basic.yml +++ b/.github/workflows/basic.yml @@ -8,7 +8,7 @@ permissions: env: # for installation testing - it should match with version set in CMake - UMF_VERSION: 0.9.0 + UMF_VERSION: 0.10.0 BUILD_DIR : "${{github.workspace}}/build" INSTL_DIR : "${{github.workspace}}/../install-dir" diff --git a/include/umf/base.h b/include/umf/base.h index ecc0abf55..854688a86 100644 --- a/include/umf/base.h +++ b/include/umf/base.h @@ -28,7 +28,7 @@ extern "C" { #define UMF_MINOR_VERSION(_ver) (_ver & 0x0000ffff) /// @brief Current version of the UMF headers -#define UMF_VERSION_CURRENT UMF_MAKE_VERSION(0, 9) +#define UMF_VERSION_CURRENT UMF_MAKE_VERSION(0, 10) /// @brief Operation results typedef enum umf_result_t { diff --git a/scripts/docs_config/conf.py b/scripts/docs_config/conf.py index b93d7d977..28c9b5f9f 100644 --- a/scripts/docs_config/conf.py +++ b/scripts/docs_config/conf.py @@ -22,7 +22,7 @@ author = "Intel" # The full version, including alpha/beta/rc tags -release = "0.9.0" +release = "0.10.0" # -- General configuration ---------------------------------------------------