Skip to content

Commit

Permalink
Merge pull request #1512 from glotzerlab/release-v3.10.0
Browse files Browse the repository at this point in the history
Release v3.10.0
  • Loading branch information
joaander authored Mar 14, 2023
2 parents b5e70f7 + c795851 commit fde69be
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 20 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 = 3.9.0
current_version = 3.10.0
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 @@ -62,7 +62,7 @@ body:
attributes:
label: HOOMD-blue version
description: What version of HOOMD-blue are you using?
placeholder: 3.9.0
placeholder: 3.10.0
validations:
required: true
- type: markdown
Expand Down
18 changes: 9 additions & 9 deletions .github/ISSUE_TEMPLATE/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@ assignees: 'joaander'

Release checklist:

- [ ] Run [hoomd-benchmarks](https://github.com/glotzerlab/hoomd-benchmarks), check for performance
regressions with the previous release, and post the tables in the release pull request.
- [ ] Update actions versions.
- See current actions usage with: `rg --no-filename --hidden uses: | awk '{$1=$1;print}' | sort | uniq`
- Use global search and replace to update them to the latest tags
- [ ] Check for new or duplicate contributors since the last release:
`comm -13 <(git log LAST_TAG --format="%aN <%aE>" | sort | uniq) <(git log --format="%aN <%aE>" | sort | uniq)`.
Add entries to `.mailmap` to remove duplicates.
- [ ] Run *bumpversion*.
- [ ] Update tutorial submodule.
- [ ] Update change log.
- ``git log --format=oneline --first-parent `git log -n 1 --pretty=format:%H -- CHANGELOG.rst`...``
- [milestone](https://github.com/glotzerlab/hoomd-blue/milestones)
- [ ] Check readthedocs build, especially change log formatting.
- [Build status](https://readthedocs.org/projects/hoomd-blue/builds/)
- [Output](https://hoomd-blue.readthedocs.io/en/latest/)
- [ ] Update actions versions.
- See current actions usage with: `rg --no-filename --hidden uses: | awk '{$1=$1;print}' | sort | uniq`
- Use global search and replace to update them to the latest tags
- [ ] Check for new or duplicate contributors since the last release:
`comm -13 <(git log LAST_TAG --format="%aN <%aE>" | sort | uniq) <(git log --format="%aN <%aE>" | sort | uniq)`.
Add entries to `.mailmap` to remove duplicates.
- [ ] Run [hoomd-benchmarks](https://github.com/glotzerlab/hoomd-benchmarks), check for performance
regressions with the previous release, and post the tables in the release pull request.
- [ ] Run *bumpversion*.
- [ ] Tag and push.
- [ ] Update conda-forge recipe.
- [ ] Update glotzerlab-software.
Expand Down
1 change: 1 addition & 0 deletions .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ Patrick Lawton <[email protected]> plawton <[email protected]>
Sophie YouJung Lee <[email protected]> Sophie YouJung Lee <[email protected]>
Sophie YouJung Lee <[email protected]> Sophie YJL <[email protected]>
Yuan Zhou <[email protected]> yuanzhou0827 <[email protected]>
Yuan Zhou <[email protected]> yuanzhou <[email protected]>
Tobias Dwyer <[email protected]> Tobias-Dwyer <[email protected]>
Sophie YouJung Lee <[email protected]> SophieYJL <[email protected]>
Sophie YouJung Lee <[email protected]> Sophie Youjung Lee <[email protected]>
Expand Down
4 changes: 2 additions & 2 deletions BUILDING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ Clone using Git_::

$ git clone --recursive https://github.com/glotzerlab/hoomd-blue

Release tarballs are also available as `GitHub release`_ assets: `Download hoomd-v3.9.0.tar.gz`_.
Release tarballs are also available as `GitHub release`_ assets: `Download hoomd-v3.10.0.tar.gz`_.

.. seealso::

Expand All @@ -158,7 +158,7 @@ Release tarballs are also available as `GitHub release`_ assets: `Download hoomd
Execute ``git submodule update --init`` to fetch the submodules each time you switch branches
and the submodules show as modified.

.. _Download hoomd-v3.9.0.tar.gz: https://github.com/glotzerlab/hoomd-blue/releases/download/v3.9.0/hoomd-v3.9.0.tar.gz
.. _Download hoomd-v3.10.0.tar.gz: https://github.com/glotzerlab/hoomd-blue/releases/download/v3.10.0/hoomd-v3.10.0.tar.gz
.. _GitHub release: https://github.com/glotzerlab/hoomd-blue/releases
.. _git book: https://git-scm.com/book
.. _Git: https://git-scm.com/
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ add_subdirectory (CMake)

################################
## Version information
set(HOOMD_VERSION_RAW "3.9.0")
set(HOOMD_VERSION_RAW "3.10.0")
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
4 changes: 2 additions & 2 deletions hoomd/hpmc/external/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ class CPPExternalPotential(ExternalField):
Your code *must* return a value.
.. _VectorMath.h: https://github.com/glotzerlab/hoomd-blue/blob/\
v3.9.0/hoomd/VectorMath.h
v3.10.0/hoomd/VectorMath.h
.. _BoxDim.h: https://github.com/glotzerlab/hoomd-blue/blob/\
v3.9.0/hoomd/BoxDim.h
v3.10.0/hoomd/BoxDim.h
Example:
.. code-block:: python
Expand Down
2 changes: 1 addition & 1 deletion hoomd/hpmc/pair/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class CPPPotentialBase(AutotunedObject):
HOOMD-blue source code.
.. _VectorMath.h: https://github.com/glotzerlab/hoomd-blue/blob/\
v3.9.0/hoomd/VectorMath.h
v3.10.0/hoomd/VectorMath.h
Note:
Your code *must* return a value.
Expand Down
4 changes: 2 additions & 2 deletions sphinx-doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@
copyright = f'2009-{ year } The Regents of the University of Michigan'
author = 'The Regents of the University of Michigan'

version = '3.9.0'
release = '3.9.0'
version = '3.10.0'
release = '3.10.0'

language = 'en'

Expand Down

0 comments on commit fde69be

Please sign in to comment.