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 ---------------------------------------------------