Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version number and cleanup changelog #561

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update version number and cleanup changelog
  • Loading branch information
stanleytsang-amd committed Oct 8, 2024
commit 762190f378b75c8d16a2d95a0b646d7b894e3a57
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
Expand Down