Skip to content

Update UMF version to 0.10.0 in headers, CI and docs config file #738

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion include/umf/base.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion scripts/docs_config/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = "Intel"

# The full version, including alpha/beta/rc tags
release = "0.9.0"
release = "0.10.0"


# -- General configuration ---------------------------------------------------
Expand Down
Loading