Skip to content

Commit 1ba4d42

Browse files
authored
Merge pull request #2272 from glotzerlab/post-release-updates
Post release updates
2 parents 8cb220c + dcb17d8 commit 1ba4d42

9 files changed

Lines changed: 39 additions & 17 deletions

File tree

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "7.0.0"
2+
current_version = "7.0.1"
33

44
[[tool.bumpversion.files]]
55
filename = "INSTALLING.rst"

.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: 7.0.0
63+
placeholder: 7.0.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 7.0.0'
4+
title: 'Release 7.0.1'
55
labels: ''
66

77
---

.github/workflows/release.yaml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,26 @@ jobs:
7777
*.tar.gz
7878
changelog.md
7979
80+
check:
81+
name: Check [GitHub]
82+
needs: [release]
83+
runs-on: ubuntu-24.04
84+
85+
steps:
86+
- name: Download artifacts
87+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
88+
with:
89+
name: release
90+
91+
- name: Check files
92+
run: ls -lR
93+
8094
publish:
8195
name: Publish [GitHub]
8296
needs: [release]
8397
runs-on: ubuntu-24.04
98+
if: startsWith(github.ref, 'refs/tags/v')
99+
environment: release
84100
permissions:
85101
contents: write
86102

@@ -92,7 +108,6 @@ jobs:
92108

93109
- name: Create release
94110
uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe # v2.6.1
95-
if: startsWith(github.ref, 'refs/tags/v')
96111
with:
97112
files: "*.tar.*"
98113
body_path: changelog.md

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ Change Log
44
Recent releases
55
---------------
66

7+
7.0.1 (2026-04-08)
8+
^^^^^^^^^^^^^^^^^^^^
9+
10+
*Fixed*
11+
12+
* Fixed external component builds with Eigen 5.x (#2272).
13+
714
7.0.0 (2026-04-07)
815
^^^^^^^^^^^^^^^^^^^^
916

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 "7.0.0")
19+
set(HOOMD_VERSION_RAW "7.0.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: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ channel:
2424

2525
.. code-block:: bash
2626
27-
pixi add hoomd=7.0.0
27+
pixi add hoomd=7.0.1
2828
2929
.. tab:: Micromamba
3030

3131
.. code-block:: bash
3232
33-
micromamba install hoomd=7.0.0
33+
micromamba install hoomd=7.0.1
3434
3535
.. tab:: Mamba
3636

3737
.. code-block:: bash
3838
39-
mamba install hoomd=7.0.0
39+
mamba install hoomd=7.0.1
4040
4141
.. _conda-forge: https://conda-forge.org/docs/user/introduction.html
4242

@@ -56,22 +56,22 @@ appropriate package. Override this and force the GPU enabled package installatio
5656

5757
.. code-block:: bash
5858
59-
pixi add "hoomd=7.0.0=*gpu*"
59+
pixi add "hoomd=7.0.1=*gpu*"
6060
6161
6262
.. tab:: Micromamba
6363

6464
.. code-block:: bash
6565
6666
export CONDA_OVERRIDE_CUDA="12.9"
67-
micromamba install "hoomd=7.0.0=*gpu*" "cuda-version=12.9"
67+
micromamba install "hoomd=7.0.1=*gpu*" "cuda-version=12.9"
6868
6969
.. tab:: Mamba
7070

7171
.. code-block:: bash
7272
7373
export CONDA_OVERRIDE_CUDA="12.9"
74-
mamba install "hoomd=7.0.0=*gpu*" "cuda-version=12.9"
74+
mamba install "hoomd=7.0.1=*gpu*" "cuda-version=12.9"
7575
7676
.. note::
7777

@@ -85,16 +85,16 @@ Similarly, you can force CPU-only package installation with:
8585

8686
.. code-block:: bash
8787
88-
pixi add "hoomd=7.0.0=*cpu*"
88+
pixi add "hoomd=7.0.1=*cpu*"
8989
9090
.. tab:: Micromamba
9191

9292
.. code-block:: bash
9393
94-
micromamba install "hoomd=7.0.0=*cpu*"
94+
micromamba install "hoomd=7.0.1=*cpu*"
9595
9696
.. tab:: Mamba
9797

9898
.. code-block:: bash
9999
100-
mamba install "hoomd=7.0.0=*cpu*"
100+
mamba install "hoomd=7.0.1=*cpu*"

hoomd-config.cmake.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ find_package(Python REQUIRED COMPONENTS Interpreter Development)
3939
find_package(pybind11 2.12 CONFIG REQUIRED)
4040
find_package_message(pybind11 "Found pybind11: ${pybind11_DIR} ${pybind11_INCLUDE_DIR} (version ${pybind11_VERSION})" "[${pybind11_DIR}][${pybind11_INCLUDE_DIR}]")
4141

42-
find_package(Eigen3 3.2 CONFIG REQUIRED)
42+
find_package(Eigen3 CONFIG REQUIRED)
4343
find_package_message(EIGEN3 "Found eigen: ${Eigen3_DIR} ${EIGEN3_INCLUDE_DIR} (version ${Eigen3_VERSION})" "[${Eigen3_DIR}][${EIGEN3_INCLUDE_DIR}]")
4444

4545
# find optional dependencies

sphinx-doc/conf.py

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

93-
version = "7.0.0"
94-
release = "7.0.0"
93+
version = "7.0.1"
94+
release = "7.0.1"
9595

9696
language = "en"
9797

0 commit comments

Comments
 (0)