Skip to content

Commit cf3cc32

Browse files
Update the repo status for v0.9.0-rc1 release
1 parent ac26c57 commit cf3cc32

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
lines changed

.github/workflows/basic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permissions:
88

99
env:
1010
# for installation testing - it should match with version set in CMake
11-
UMF_VERSION: 0.1.0
11+
UMF_VERSION: 0.9.0
1212
BUILD_DIR : "${{github.workspace}}/build"
1313
INSTL_DIR : "${{github.workspace}}/../install-dir"
1414

ChangeLog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Wed Jul 17 2024 Łukasz Stolarczuk <[email protected]>
2+
3+
* Version 0.9.0-rc1
4+
5+
This is a pre-release version 0.9.0-rc1. When ready (with no rc status),
6+
it will aim to be the first complete release of the UMF project.
7+
With this release we don't yet guarantee a fully stable API.
8+
19
Thu Jul 04 2024 Łukasz Stolarczuk <[email protected]>
210

311
* Version 0.1.0

README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,6 @@
1515

1616
The Unified Memory Framework (UMF) is a library for constructing allocators and memory pools. It also contains broadly useful abstractions and utilities for memory management. UMF allows users to manage multiple memory pools characterized by different attributes, allowing certain allocation types to be isolated from others and allocated using different hardware resources as required.
1717

18-
**⚠️ Work-In-Progress disclaimer:**
19-
> Please note that this project is **pre-production software**, it should not be considered complete or fully functional.
20-
> It has not been fully tested yet (including security testing). It is not recommended to be used in production
21-
> as part of a larger system. Note that this warning is temporary - we plan to release a stable version within six months.
22-
> This project is not eligible for Intel® Bug Bounty Program.
23-
>
24-
> The API is not yet stable, may change without notice, and will not maintain backward compatibility.
25-
2618
## Usage
2719

2820
For a quick introduction to UMF usage, please see

cmake/helpers.cmake

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ function(set_version_variables)
7777
WORKING_DIRECTORY ${UMF_CMAKE_SOURCE_DIR}
7878
OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_QUIET)
7979

80+
# XXX temp change, to simulate release:
81+
set(GIT_VERSION "v0.9.0-rc1")
82+
8083
if(NOT GIT_VERSION)
8184
# no git or it reported no version. Use default ver: "0.0.0"
8285
return()

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.1.0"
25+
release = "0.9.0-rc1"
2626

2727

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

0 commit comments

Comments
 (0)