From a435423020b454dfa9e10c4eb239b49fc7c86298 Mon Sep 17 00:00:00 2001 From: "Galantsev, Dmitrii" Date: Tue, 21 Nov 2023 17:17:44 -0600 Subject: [PATCH] Bump version lib:7.0.0 tool:2.0.0+hash Change-Id: I7f2fd5605a93d07f61b997a25e1fbcf2780ea5cb Signed-off-by: Galantsev, Dmitrii [ROCm/rocm_smi_lib commit: e1c972a19396166a030502288490f7bf7c1d0d13] --- projects/rocm-smi-lib/CMakeLists.txt | 2 +- projects/rocm-smi-lib/python_smi_tools/rocm_smi.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/rocm-smi-lib/CMakeLists.txt b/projects/rocm-smi-lib/CMakeLists.txt index bd268bd7e5..dafb40f0b9 100755 --- a/projects/rocm-smi-lib/CMakeLists.txt +++ b/projects/rocm-smi-lib/CMakeLists.txt @@ -35,7 +35,7 @@ find_program (GIT NAMES git) ## Setup the package version based on git tags. set(PKG_VERSION_GIT_TAG_PREFIX "rsmi_pkg_ver") -get_package_version_number("6.1.0" ${PKG_VERSION_GIT_TAG_PREFIX} GIT) +get_package_version_number("7.0.0" ${PKG_VERSION_GIT_TAG_PREFIX} GIT) message("Package version: ${PKG_VERSION_STR}") set(${ROCM_SMI_LIBS_TARGET}_VERSION_MAJOR "${CPACK_PACKAGE_VERSION_MAJOR}") set(${ROCM_SMI_LIBS_TARGET}_VERSION_MINOR "${CPACK_PACKAGE_VERSION_MINOR}") diff --git a/projects/rocm-smi-lib/python_smi_tools/rocm_smi.py b/projects/rocm-smi-lib/python_smi_tools/rocm_smi.py index 294e078620..9ebf07167b 100755 --- a/projects/rocm-smi-lib/python_smi_tools/rocm_smi.py +++ b/projects/rocm-smi-lib/python_smi_tools/rocm_smi.py @@ -30,8 +30,8 @@ from rsmiBindings import * # Minor version - Increment when adding a new feature, set to 0 when major is incremented # Patch version - Increment when adding a fix, set to 0 when minor is incremented # Hash version - Shortened commit hash. Print here and not with lib for consistency with amd-smi -SMI_MAJ = 1 -SMI_MIN = 5 +SMI_MAJ = 2 +SMI_MIN = 0 SMI_PAT = 0 # SMI_HASH is provided by rsmiBindings __version__ = '%s.%s.%s+%s' % (SMI_MAJ, SMI_MIN, SMI_PAT, SMI_HASH)