Version Bump 26.0.0
Signed-off-by: Maisam Arif <Maisam.Arif@amd.com> Change-Id: I29ea6fa781dfc338a60b390ff498c46b4a1efe52
This commit is contained in:
committed by
Arif, Maisam
parent
c8f33c96c3
commit
cc4dfd834f
+1
-1
@@ -22,7 +22,7 @@ find_program(GIT NAMES git)
|
||||
|
||||
## Setup the package version based on git tags.
|
||||
set(PKG_VERSION_GIT_TAG_PREFIX "amdsmi_pkg_ver")
|
||||
get_package_version_number("25.5.0" ${PKG_VERSION_GIT_TAG_PREFIX} GIT)
|
||||
get_package_version_number("26.0.0" ${PKG_VERSION_GIT_TAG_PREFIX} GIT)
|
||||
message("Package version: ${PKG_VERSION_STR}")
|
||||
set(${AMD_SMI_LIBS_TARGET}_VERSION_MAJOR "${CPACK_PACKAGE_VERSION_MAJOR}")
|
||||
set(${AMD_SMI_LIBS_TARGET}_VERSION_MINOR "${CPACK_PACKAGE_VERSION_MINOR}")
|
||||
|
||||
@@ -48,7 +48,7 @@ PROJECT_NAME = AMD SMI
|
||||
# could be handy for archiving the generated documentation or if some version
|
||||
# control system is used.
|
||||
|
||||
PROJECT_NUMBER = "25.5.0"
|
||||
PROJECT_NUMBER = "26.0.0"
|
||||
|
||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||
# for a project that appears at the top of each page and should give viewer a
|
||||
|
||||
@@ -35,7 +35,7 @@ detected:
|
||||
~$ amd-smi
|
||||
usage: amd-smi [-h] ...
|
||||
|
||||
AMD System Management Interface | Version: 25.5.0 | ROCm version: 7.0.0 | Platform: Linux Baremetal
|
||||
AMD System Management Interface | Version: 26.0.0 | ROCm version: 7.0.0 | Platform: Linux Baremetal
|
||||
|
||||
options:
|
||||
-h, --help show this help message and exit
|
||||
|
||||
@@ -201,13 +201,13 @@ typedef enum {
|
||||
|
||||
//! Major version should be changed for every header change that breaks ABI
|
||||
//! Such as adding/deleting APIs, changing names, fields of structures, etc.
|
||||
#define AMDSMI_LIB_VERSION_MAJOR 25
|
||||
#define AMDSMI_LIB_VERSION_MAJOR 26
|
||||
|
||||
//! Minor version should be updated for each API change, but without changing headers
|
||||
#define AMDSMI_LIB_VERSION_MINOR 4
|
||||
#define AMDSMI_LIB_VERSION_MINOR 0
|
||||
|
||||
//! Release version should be set to 0 as default and can be updated by the PMs for each CSP point release
|
||||
#define AMDSMI_LIB_VERSION_RELEASE 2
|
||||
#define AMDSMI_LIB_VERSION_RELEASE 0
|
||||
|
||||
#define AMDSMI_LIB_VERSION_CREATE_STRING(MAJOR, MINOR, RELEASE) (#MAJOR "." #MINOR "." #RELEASE)
|
||||
#define AMDSMI_LIB_VERSION_EXPAND_PARTS(MAJOR_STR, MINOR_STR, RELEASE_STR) AMDSMI_LIB_VERSION_CREATE_STRING(MAJOR_STR, MINOR_STR, RELEASE_STR)
|
||||
|
||||
@@ -123,9 +123,9 @@ pub const AMDSMI_MAX_NUM_XCC: u32 = 8;
|
||||
pub const AMDSMI_MAX_NUM_XCP: u32 = 8;
|
||||
pub const AMDSMI_TIME_FORMAT: &[u8; 20] = b"%02d:%02d:%02d.%03d\0";
|
||||
pub const AMDSMI_DATE_FORMAT: &[u8; 35] = b"%04d-%02d-%02d:%02d:%02d:%02d.%03d\0";
|
||||
pub const AMDSMI_LIB_VERSION_MAJOR: u32 = 25;
|
||||
pub const AMDSMI_LIB_VERSION_MINOR: u32 = 4;
|
||||
pub const AMDSMI_LIB_VERSION_RELEASE: u32 = 2;
|
||||
pub const AMDSMI_LIB_VERSION_MAJOR: u32 = 26;
|
||||
pub const AMDSMI_LIB_VERSION_MINOR: u32 = 0;
|
||||
pub const AMDSMI_LIB_VERSION_RELEASE: u32 = 0;
|
||||
pub const AMDSMI_MAX_NUM_FREQUENCIES: u32 = 33;
|
||||
pub const AMDSMI_MAX_FAN_SPEED: u32 = 255;
|
||||
pub const AMDSMI_NUM_VOLTAGE_CURVE_POINTS: u32 = 3;
|
||||
|
||||
Reference in New Issue
Block a user