From de4035d20268eb6d5da068ae2695bae3b608482d Mon Sep 17 00:00:00 2001 From: Stanley Tsang Date: Wed, 9 Oct 2024 10:42:13 -0600 Subject: [PATCH] Update version number and cleanup changelog (#561) --- CHANGELOG.md | 6 +++--- CMakeLists.txt | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac3306c7..a60f30ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,13 +3,13 @@ Documentation for rocRAND is available at [https://rocm.docs.amd.com/projects/rocRAND/en/latest/](https://rocm.docs.amd.com/projects/rocRAND/en/latest/) -## (Unreleased) rocRAND-3.1.1 for ROCm 6.2.4 +## rocRAND-3.1.1 for ROCm 6.2.4 ### Additions * GFX1151 Support -## (Unreleased) rocRAND-3.1.0 for ROCm 6.2.0 +## rocRAND-3.1.0 for ROCm 6.2.0 ### Additions @@ -83,7 +83,7 @@ Documentation for rocRAND is available at ### Known issues - SOBOL64 and SCRAMBLED_SOBOL64 generate poisson-distributed `unsigned long long int` numbers instead of `unsigned int`. This will be fixed in the next major release. -## (Unreleased) rocRAND-3.0.0 for ROCm 6.0.0 +## rocRAND-3.0.0 for ROCm 6.0.0 ### Additions diff --git a/CMakeLists.txt b/CMakeLists.txt index d7ff8d6f..e98a431b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -148,7 +148,7 @@ if(BUILD_FILE_REORG_BACKWARD_COMPATIBILITY AND NOT WIN32) endif() # Set version variables -rocm_setup_version( VERSION "3.1.0" ) +rocm_setup_version( VERSION "3.1.1" ) set ( rocrand_VERSION ${rocRAND_VERSION} ) # Old-style version number used within the library's API. rocrand_get_version should be modified. math(EXPR rocrand_VERSION_NUMBER "${rocRAND_VERSION_MAJOR} * 100000 + ${rocRAND_VERSION_MINOR} * 100 + ${rocRAND_VERSION_PATCH}")