Skip to content

Commit

Permalink
Revert "bump versions and prepare changelog for new dev cycle (#191)" (
Browse files Browse the repository at this point in the history
…#194)

* Revert "bump versions and prepare changelog for new dev cycle (#191)"

This reverts commit 96e4dd2.

* Restored changelog
  • Loading branch information
tfalders authored Sep 28, 2023
1 parent 39016b7 commit 00ae3cb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ include( ROCMInstallSymlinks )
include( ROCMClients )
include( ROCMHeaderWrapper )

set ( VERSION_STRING "2.1.0" )
set ( VERSION_STRING "2.0.0" )
rocm_setup_version( VERSION ${VERSION_STRING} )

if( NOT DEFINED ENV{HIP_PATH})
Expand Down Expand Up @@ -214,7 +214,7 @@ endif( )

# Package specific CPACK vars
if( NOT USE_CUDA )
rocm_package_add_dependencies(DEPENDS "rocblas >= 4.1.0" "rocsolver >= 3.25.0")
rocm_package_add_dependencies(DEPENDS "rocblas >= 4.0.0" "rocsolver >= 3.24.0")
endif( )

set( CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE.md" )
Expand Down
12 changes: 6 additions & 6 deletions bump_hipsolver_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
# Edit script to bump versions for new development cycle/release.

# for hipSOLVER version string
OLD_HIPSOLVER_VERSION="2.1.0"
NEW_HIPSOLVER_VERSION="2.2.0"
OLD_HIPSOLVER_VERSION="2.0.0"
NEW_HIPSOLVER_VERSION="2.1.0"
sed -i "s/${OLD_HIPSOLVER_VERSION}/${NEW_HIPSOLVER_VERSION}/g" CMakeLists.txt

# for rocBLAS/rocSOLVER package requirements
OLD_MINIMUM_ROCBLAS_VERSION="4.1.0"
NEW_MINIMUM_ROCBLAS_VERSION="4.2.0"
OLD_MINIMUM_ROCSOLVER_VERSION="3.25.0"
NEW_MINIMUM_ROCSOLVER_VERSION="3.26.0"
OLD_MINIMUM_ROCBLAS_VERSION="4.0.0"
NEW_MINIMUM_ROCBLAS_VERSION="4.1.0"
OLD_MINIMUM_ROCSOLVER_VERSION="3.24.0"
NEW_MINIMUM_ROCSOLVER_VERSION="3.25.0"
sed -i "s/${OLD_MINIMUM_ROCBLAS_VERSION}/${NEW_MINIMUM_ROCBLAS_VERSION}/g" CMakeLists.txt
sed -i "s/${OLD_MINIMUM_ROCSOLVER_VERSION}/${NEW_MINIMUM_ROCSOLVER_VERSION}/g" CMakeLists.txt

0 comments on commit 00ae3cb

Please sign in to comment.