Skip to content

Commit 29e7820

Browse files
authored
Merge pull request #2104 from glotzerlab/release-5.3.1
Release 5.3.1
2 parents 6c73f3a + af48ec1 commit 29e7820

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 5.3.0
2+
current_version = 5.3.1
33
commit = False
44
tag = False
55
parse = ^(?P<major>0|[1-9]\d*)\.(?P<minor>0|[1-9]\d*)\.(?P<patch>0|[1-9]\d*)(?:-(?P<prerelease>(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))(?:\.(?P<number>0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)))?$

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ body:
6060
attributes:
6161
label: HOOMD-blue version
6262
description: What version of HOOMD-blue are you using?
63-
placeholder: 5.3.0
63+
placeholder: 5.3.1
6464
validations:
6565
required: true
6666
- type: markdown

.github/ISSUE_TEMPLATE/release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Release checklist
33
about: '[for maintainer use]'
4-
title: 'Release 5.3.0'
4+
title: 'Release 5.3.1'
55
labels: ''
66
assignees: 'joaander'
77

CHANGELOG.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ Change Log
44
5.x
55
---
66

7-
5.3.1 (not yet released)
8-
^^^^^^^^^^^^^^^^^^^^^^^^
7+
5.3.1 (2025-07-18)
8+
^^^^^^^^^^^^^^^^^^
99

1010
*Fixed*
1111

12-
* Ensure that GPU devices have full unified memory capabilities
12+
* Ensure that GPU devices have concurrent unified memory capabilities
1313
(`#2099 <https://github.com/glotzerlab/hoomd-blue/pull/2099>`__).
1414
* Fix segfault when attaching nlists with meshes
1515
(`#2089 <https://github.com/glotzerlab/hoomd-blue/pull/2089>`__).

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ add_subdirectory (CMake)
1616

1717
################################
1818
## Version information
19-
set(HOOMD_VERSION_RAW "5.3.0")
19+
set(HOOMD_VERSION_RAW "5.3.1")
2020
string(REGEX MATCH "(.*)\\.(.*)\\.(.*)$" _hoomd_version_match ${HOOMD_VERSION_RAW})
2121
set(HOOMD_VERSION_MAJOR ${CMAKE_MATCH_1})
2222
set(HOOMD_VERSION_MINOR ${CMAKE_MATCH_2})

INSTALLING.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ channel:
2222

2323
.. code-block:: bash
2424
25-
micromamba install hoomd=5.3.0
25+
micromamba install hoomd=5.3.1
2626
2727
.. _conda-forge: https://conda-forge.org/docs/user/introduction.html
2828

@@ -32,7 +32,7 @@ appropriate package. Override this and force the GPU enabled package installatio
3232
.. code-block:: bash
3333
3434
export CONDA_OVERRIDE_CUDA="12.6"
35-
micromamba install "hoomd=5.3.0=*gpu*" "cuda-version=12.6"
35+
micromamba install "hoomd=5.3.1=*gpu*" "cuda-version=12.6"
3636
3737
.. note::
3838

@@ -43,7 +43,7 @@ Similarly, you can force CPU-only package installation with:
4343

4444
.. code-block:: bash
4545
46-
micromamba install "hoomd=5.3.0=*cpu*"
46+
micromamba install "hoomd=5.3.1=*cpu*"
4747
4848
.. note::
4949

hoomd/ExecutionConfiguration.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ void ExecutionConfiguration::scanGPUs()
389389
#ifdef __HIP_PLATFORM_NVCC__
390390
int supports_managed_memory = 0;
391391
cudaError_t cuda_error = cudaDeviceGetAttribute(&supports_managed_memory,
392-
cudaDevAttrPageableMemoryAccess,
392+
cudaDevAttrConcurrentManagedAccess,
393393
dev);
394394
if (cuda_error != cudaSuccess)
395395
{

sphinx-doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@
8585
copyright = f"2009-{year} The Regents of the University of Michigan"
8686
author = "The Regents of the University of Michigan"
8787

88-
version = "5.3.0"
89-
release = "5.3.0"
88+
version = "5.3.1"
89+
release = "5.3.1"
9090

9191
language = "en"
9292

0 commit comments

Comments
 (0)