From f34fea28d46b651200da6387bd8477b28b6512a9 Mon Sep 17 00:00:00 2001 From: Myoungho Shin Date: Sun, 23 Aug 2026 18:38:38 -0700 Subject: [PATCH] Prepare gpufl client 1.3.0rc2 --- CMakeLists.txt | 2 +- pyproject.toml | 2 +- python/gpufl/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9d4c4ac..6a1e2af 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ project(gpufl_client # pre-release tokens (`rc1`, `a1`, `b1`, …) aren't valid in CMake's # `project(... VERSION ...)`, so we layer them on top here. Final releases # leave this empty. -set(GPUFL_VERSION_SUFFIX "rc1") +set(GPUFL_VERSION_SUFFIX "rc2") # ----------------------- # CUDA Architectures (CI Friendly) diff --git a/pyproject.toml b/pyproject.toml index 933c18f..38a94d8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "scikit_build_core.build" [project] name = "gpufl" -version = "1.3.0rc1" +version = "1.3.0rc2" description = "GPU Monitoring Client" readme = "README.md" authors = [ diff --git a/python/gpufl/__init__.py b/python/gpufl/__init__.py index 9551ccb..ed9010a 100644 --- a/python/gpufl/__init__.py +++ b/python/gpufl/__init__.py @@ -320,7 +320,7 @@ def _c_upload_logs(*args, **kwargs): # type: ignore[no-redef] print(f"[FATAL] Unexpected error importing _gpufl_client: {e}", file=sys.stderr) raise e -__version__ = "1.3.0rc1" +__version__ = "1.3.0rc2" # ── Backend upload ──────────────────────────────────────────────────────────── #