Skip to content

Commit 5d99bf6

Browse files
Update the repo status for 0.9.0-rc1 release
1 parent c39f4aa commit 5d99bf6

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

1313
jobs:
1414
ubuntu-build:

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
@@ -19,6 +19,9 @@ function(set_source_version)
1919
WORKING_DIRECTORY ${UMF_CMAKE_SOURCE_DIR}
2020
OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_QUIET)
2121

22+
# XXX temp change, to simulate release:
23+
set(GIT_VERSION "0.9.0-rc1")
24+
2225
if(GIT_VERSION)
2326
# 1.5.0 - we're on a tag
2427
string(REGEX MATCHALL "\^([0-9]+\.[0-9]+\.[0-9]+)\$" MATCHES

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)