Skip to content
Closed
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.1.0
UMF_VERSION: 0.9.0
BUILD_DIR : "${{github.workspace}}/build"
INSTL_DIR : "${{github.workspace}}/../install-dir"

Expand Down
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Wed Jul 17 2024 Łukasz Stolarczuk <[email protected]>

* Version 0.9.0-rc1

This is a pre-release version 0.9.0-rc1. When ready (with no rc status),
it will aim to be the first complete release of the UMF project.
With this release we don't yet guarantee a fully stable API.

Thu Jul 04 2024 Łukasz Stolarczuk <[email protected]>

* Version 0.1.0
Expand Down
8 changes: 0 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,6 @@

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.

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

## Usage

For a quick introduction to UMF usage, please see
Expand Down
3 changes: 3 additions & 0 deletions cmake/helpers.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ function(set_version_variables)
WORKING_DIRECTORY ${UMF_CMAKE_SOURCE_DIR}
OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_QUIET)

# XXX temp change, to simulate release:
set(GIT_VERSION "v0.9.0-rc1")

if(NOT GIT_VERSION)
# no git or it reported no version. Use default ver: "0.0.0"
return()
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.1.0"
release = "0.9.0-rc1"


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