Skip to content

Commit e7490c6

Browse files
Correct base release for cuvs abi 1 major (rapidsai#1724)
Correct the libcuvs_c.so ABI major to start at 26.02 Authors: - Robert Maynard (https://github.com/robertmaynard) Approvers: - Dante Gama Dessavre (https://github.com/dantegd) URL: rapidsai#1724
1 parent b137dd2 commit e7490c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpp/cmake/modules/determine_cuvs_abi_version.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function(determine_cuvs_abi_version cal_ver)
6969
# Encode the last ABI break
7070
set(current_major_abi_ver "1") # The current ABI major value
7171
set(abi_base_year "26") # What year the current ABI major occurred in
72-
set(abi_base_month "04") # What month the current ABI major occurred in
72+
set(abi_base_month "02") # What month the current ABI major occurred in
7373
# compute the abi version
7474
if(cal_ver_major STREQUAL abi_base_year)
7575
# If we are in the same year is is pretty easy to compute our abi break
@@ -83,7 +83,7 @@ function(determine_cuvs_abi_version cal_ver)
8383
endif()
8484

8585
set(${_CUVS_RAPIDS_MAJOR}
86-
${computed_abi_major}
86+
${current_major_abi_ver}
8787
PARENT_SCOPE
8888
)
8989
set(${_CUVS_RAPIDS_MINOR}

0 commit comments

Comments
 (0)