diff --git a/CMakeLists.txt b/CMakeLists.txt index 213051b0e8..51f0ebea88 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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}") diff --git a/docs/doxygen/Doxyfile b/docs/doxygen/Doxyfile index e8f7adc7e3..892855e79d 100644 --- a/docs/doxygen/Doxyfile +++ b/docs/doxygen/Doxyfile @@ -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 diff --git a/docs/how-to/amdsmi-cli-tool.md b/docs/how-to/amdsmi-cli-tool.md index 7bcb8933b8..9631c15dcb 100644 --- a/docs/how-to/amdsmi-cli-tool.md +++ b/docs/how-to/amdsmi-cli-tool.md @@ -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 diff --git a/include/amd_smi/amdsmi.h b/include/amd_smi/amdsmi.h index 386bcb801b..3fe5630423 100644 --- a/include/amd_smi/amdsmi.h +++ b/include/amd_smi/amdsmi.h @@ -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) diff --git a/rust-interface/src/amdsmi_wrapper.rs b/rust-interface/src/amdsmi_wrapper.rs index 233bcb4c4b..ac05ef41dd 100644 --- a/rust-interface/src/amdsmi_wrapper.rs +++ b/rust-interface/src/amdsmi_wrapper.rs @@ -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;