Skip to content

Commit

Permalink
Merge pull request #1989 from glotzerlab/release-5.0.1
Browse files Browse the repository at this point in the history
Release 5.0.1
  • Loading branch information
joaander authored Jan 20, 2025
2 parents 2307cc1 + c2b6fb9 commit 665633e
Show file tree
Hide file tree
Showing 1,074 changed files with 1,083 additions and 1,081 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 5.0.0
current_version = 5.0.1
commit = False
tag = False
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-]*)))?$
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ body:
attributes:
label: HOOMD-blue version
description: What version of HOOMD-blue are you using?
placeholder: 5.0.0
placeholder: 5.0.1
validations:
required: true
- type: markdown
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/release.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Release checklist
about: '[for maintainer use]'
title: 'Release 5.0.0'
title: 'Release 5.0.1'
labels: ''
assignees: 'joaander'

Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ sphinx:
fail_on_warning: true

build:
os: ubuntu-22.04
os: ubuntu-24.04
tools:
python: "3.12"

Expand Down
10 changes: 6 additions & 4 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,17 @@ Change Log
5.x
---

5.0.1 (not yet released)
^^^^^^^^^^^^^^^^^^^^^^^^
5.0.1 (2025-01-20)
^^^^^^^^^^^^^^^^^^

*Fixed*

* Prevent ``missing 1 required positional argument: 'kT'`` errors when using NEC integrators
(`#1965 <https://github.com/glotzerlab/hoomd-blue/pull/1965>`__)
(`#1965 <https://github.com/glotzerlab/hoomd-blue/pull/1965>`__).
* Note the current version of CUDA in the micromamba installation instructions
(`#1972 <https://github.com/glotzerlab/hoomd-blue/pull/1972>`__)
(`#1972 <https://github.com/glotzerlab/hoomd-blue/pull/1972>`__).
* Provide a navigation bar on the 404 not found page in the documentation
(`#1986 <https://github.com/glotzerlab/hoomd-blue/pull/1986>`__).


5.0.0 (2024-12-02)
Expand Down
2 changes: 1 addition & 1 deletion CMake/hoomd/test.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

int main(int argc, char **argv)
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ add_subdirectory (CMake)

################################
## Version information
set(HOOMD_VERSION_RAW "5.0.0")
set(HOOMD_VERSION_RAW "5.0.1")
string(REGEX MATCH "(.*)\\.(.*)\\.(.*)$" _hoomd_version_match ${HOOMD_VERSION_RAW})
set(HOOMD_VERSION_MAJOR ${CMAKE_MATCH_1})
set(HOOMD_VERSION_MINOR ${CMAKE_MATCH_2})
Expand Down
6 changes: 3 additions & 3 deletions INSTALLING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ channel:

.. code-block:: bash
micromamba install hoomd=5.0.0
micromamba install hoomd=5.0.1
.. _conda-forge: https://conda-forge.org/docs/user/introduction.html

Expand All @@ -32,7 +32,7 @@ appropriate package. Override this and force the GPU enabled package installatio
.. code-block:: bash
export CONDA_OVERRIDE_CUDA="12.6"
micromamba install "hoomd=5.0.0=*gpu*" "cuda-version=12.6"
micromamba install "hoomd=5.0.1=*gpu*" "cuda-version=12.6"
.. note::

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

.. code-block:: bash
micromamba install "hoomd=5.0.0=*cpu*"
micromamba install "hoomd=5.0.1=*cpu*"
.. note::

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2009-2024 The Regents of the University of Michigan.
Copyright (c) 2009-2025 The Regents of the University of Michigan.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion hoomd/AABB.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

#include "HOOMDMath.h"
Expand Down
2 changes: 1 addition & 1 deletion hoomd/AABBTree.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

#include "HOOMDMath.h"
Expand Down
2 changes: 1 addition & 1 deletion hoomd/Action.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

#include "Action.h"
Expand Down
2 changes: 1 addition & 1 deletion hoomd/Action.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

#pragma once
Expand Down
2 changes: 1 addition & 1 deletion hoomd/Analyzer.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file Analyzer.cc
Expand Down
2 changes: 1 addition & 1 deletion hoomd/Analyzer.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file Analyzer.h
Expand Down
2 changes: 1 addition & 1 deletion hoomd/ArrayView.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file ArrayView.h
Expand Down
2 changes: 1 addition & 1 deletion hoomd/Autotuned.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

#include "Autotuned.h"
Expand Down
2 changes: 1 addition & 1 deletion hoomd/Autotuned.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

#pragma once
Expand Down
2 changes: 1 addition & 1 deletion hoomd/Autotuner.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

// inclusion guard
Expand Down
2 changes: 1 addition & 1 deletion hoomd/BondedGroupData.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file BondedGroupData.h
Expand Down
2 changes: 1 addition & 1 deletion hoomd/BondedGroupData.cu
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

#include "BondedGroupData.cuh"
Expand Down
2 changes: 1 addition & 1 deletion hoomd/BondedGroupData.cuh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file BondedGroupData.cuh
Expand Down
2 changes: 1 addition & 1 deletion hoomd/BondedGroupData.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file BondedGroupData.h
Expand Down
2 changes: 1 addition & 1 deletion hoomd/BoxDim.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file BoxDim.h
Expand Down
2 changes: 1 addition & 1 deletion hoomd/BoxResizeUpdater.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file BoxResizeUpdater.cc
Expand Down
2 changes: 1 addition & 1 deletion hoomd/BoxResizeUpdater.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file BoxResizeUpdater.h
Expand Down
2 changes: 1 addition & 1 deletion hoomd/BoxResizeUpdaterGPU.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file BoxResizeUpdater.cc
Expand Down
2 changes: 1 addition & 1 deletion hoomd/BoxResizeUpdaterGPU.cu
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

#include "BoxResizeUpdaterGPU.cuh"
Expand Down
2 changes: 1 addition & 1 deletion hoomd/BoxResizeUpdaterGPU.cuh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

#include "hoomd/HOOMDMath.h"
Expand Down
2 changes: 1 addition & 1 deletion hoomd/BoxResizeUpdaterGPU.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file BoxResizeUpdater.h
Expand Down
2 changes: 1 addition & 1 deletion hoomd/CachedAllocator.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file CachedAllocator.h
Expand Down
2 changes: 1 addition & 1 deletion hoomd/CellList.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file CellList.cc
Expand Down
2 changes: 1 addition & 1 deletion hoomd/CellList.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

#include "HOOMDMath.h"
Expand Down
2 changes: 1 addition & 1 deletion hoomd/CellListGPU.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file CellListGPU.cc
Expand Down
2 changes: 1 addition & 1 deletion hoomd/CellListGPU.cu
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

#include "CellListGPU.cuh"
Expand Down
2 changes: 1 addition & 1 deletion hoomd/CellListGPU.cuh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

#ifndef __CELLLISTGPU_CUH__
Expand Down
2 changes: 1 addition & 1 deletion hoomd/CellListGPU.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

#include "Autotuner.h"
Expand Down
2 changes: 1 addition & 1 deletion hoomd/CellListStencil.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file CellListStencil.cc
Expand Down
2 changes: 1 addition & 1 deletion hoomd/CellListStencil.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

#include "CellList.h"
Expand Down
2 changes: 1 addition & 1 deletion hoomd/ClockSource.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file ClockSource.cc
Expand Down
2 changes: 1 addition & 1 deletion hoomd/ClockSource.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file ClockSource.h
Expand Down
2 changes: 1 addition & 1 deletion hoomd/Communicator.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file Communicator.cc
Expand Down
2 changes: 1 addition & 1 deletion hoomd/Communicator.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file Communicator.h
Expand Down
2 changes: 1 addition & 1 deletion hoomd/CommunicatorGPU.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file CommunicatorGPU.cc
Expand Down
2 changes: 1 addition & 1 deletion hoomd/CommunicatorGPU.cu
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file CommunicatorGPU.cu
Expand Down
2 changes: 1 addition & 1 deletion hoomd/CommunicatorGPU.cuh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file CommunicatorGPU.cuh
Expand Down
2 changes: 1 addition & 1 deletion hoomd/CommunicatorGPU.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file CommunicatorGPU.h
Expand Down
2 changes: 1 addition & 1 deletion hoomd/Compute.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

#include "Compute.h"
Expand Down
2 changes: 1 addition & 1 deletion hoomd/Compute.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

#include "Action.h"
Expand Down
2 changes: 1 addition & 1 deletion hoomd/DCDDumpWriter.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file DCDDumpWriter.cc
Expand Down
2 changes: 1 addition & 1 deletion hoomd/DCDDumpWriter.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

#ifndef __DCDDUMPWRITER_H__
Expand Down
2 changes: 1 addition & 1 deletion hoomd/DomainDecomposition.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file DomainDecomposition.cc
Expand Down
2 changes: 1 addition & 1 deletion hoomd/DomainDecomposition.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file DomainDecomposition.h
Expand Down
2 changes: 1 addition & 1 deletion hoomd/ExecutionConfiguration.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

#include "ExecutionConfiguration.h"
Expand Down
2 changes: 1 addition & 1 deletion hoomd/ExecutionConfiguration.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

#ifndef __EXECUTION_CONFIGURATION__
Expand Down
2 changes: 1 addition & 1 deletion hoomd/Filesystem.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file Filesystem.h
Expand Down
2 changes: 1 addition & 1 deletion hoomd/ForceCompute.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

/*! \file ForceCompute.cc
Expand Down
2 changes: 1 addition & 1 deletion hoomd/ForceCompute.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2009-2024 The Regents of the University of Michigan.
// Copyright (c) 2009-2025 The Regents of the University of Michigan.
// Part of HOOMD-blue, released under the BSD 3-Clause License.

#include "Compute.h"
Expand Down
Loading

0 comments on commit 665633e

Please sign in to comment.