Skip to content

Commit 19bd9fd

Browse files
authored
Merge pull request oneapi-src#957 from lukaszstolarczuk/bump-ver-to-0.11.0
Bump version on main to 0.11.0
2 parents 3113bed + aff5982 commit 19bd9fd

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/reusable_basic.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ permissions:
77
contents: read
88

99
env:
10-
# for installation testing - it should match with version set in CMake
11-
UMF_VERSION: 0.10.0
10+
# for installation testing - it should match with version set in git
11+
UMF_VERSION: 0.11.0
1212
BUILD_DIR : "${{github.workspace}}/build"
1313
INSTL_DIR : "${{github.workspace}}/../install-dir"
1414
COVERAGE_DIR : "${{github.workspace}}/coverage"

RELEASE_STEPS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Do changes for a release:
4242
- Update project's version in a few places:
4343
- For major and minor releases: `UMF_VERSION_CURRENT` in `include/umf/base.h` (the API version)
4444
- `release` variable in `scripts/docs_config/conf.py` (for docs)
45-
- `UMF_VERSION` variable in `.github/workflows/basic.yml` (for installation test)
45+
- `UMF_VERSION` variable in `.github/workflows/reusable_basic.yml` (for installation test)
4646
- For major releases update ABI version in `.map` and `.def` files
4747
- These files are defined for all public libraries (`libumf` and `proxy_lib`, at the moment)
4848
- Commit these changes and tag the release:

include/umf/base.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ extern "C" {
2828
#define UMF_MINOR_VERSION(_ver) (_ver & 0x0000ffff)
2929

3030
/// @brief Current version of the UMF headers
31-
#define UMF_VERSION_CURRENT UMF_MAKE_VERSION(0, 10)
31+
#define UMF_VERSION_CURRENT UMF_MAKE_VERSION(0, 11)
3232

3333
/// @brief Operation results
3434
typedef enum umf_result_t {

scripts/docs_config/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = "Intel"
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = "0.10.0"
25+
release = "0.11.0"
2626

2727

2828
# -- General configuration ---------------------------------------------------

0 commit comments

Comments
 (0)