diff --git a/.github/workflows/reusable_basic.yml b/.github/workflows/reusable_basic.yml index 1c13a771b1..9b71c7d1b8 100644 --- a/.github/workflows/reusable_basic.yml +++ b/.github/workflows/reusable_basic.yml @@ -7,8 +7,8 @@ permissions: contents: read env: - # for installation testing - it should match with version set in CMake - UMF_VERSION: 0.10.0 + # for installation testing - it should match with version set in git + UMF_VERSION: 0.11.0 BUILD_DIR : "${{github.workspace}}/build" INSTL_DIR : "${{github.workspace}}/../install-dir" COVERAGE_DIR : "${{github.workspace}}/coverage" diff --git a/RELEASE_STEPS.md b/RELEASE_STEPS.md index e88ca9c2d8..fb46f156b9 100644 --- a/RELEASE_STEPS.md +++ b/RELEASE_STEPS.md @@ -42,7 +42,7 @@ Do changes for a release: - Update project's version in a few places: - For major and minor releases: `UMF_VERSION_CURRENT` in `include/umf/base.h` (the API version) - `release` variable in `scripts/docs_config/conf.py` (for docs) - - `UMF_VERSION` variable in `.github/workflows/basic.yml` (for installation test) + - `UMF_VERSION` variable in `.github/workflows/reusable_basic.yml` (for installation test) - For major releases update ABI version in `.map` and `.def` files - These files are defined for all public libraries (`libumf` and `proxy_lib`, at the moment) - Commit these changes and tag the release: diff --git a/include/umf/base.h b/include/umf/base.h index 53378195d2..32d84771f3 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, 10) +#define UMF_VERSION_CURRENT UMF_MAKE_VERSION(0, 11) /// @brief Operation results typedef enum umf_result_t { diff --git a/scripts/docs_config/conf.py b/scripts/docs_config/conf.py index 28c9b5f9f8..577bc0b484 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.10.0" +release = "0.11.0" # -- General configuration ---------------------------------------------------