Skip to content

Commit

Permalink
Merge pull request #398 from glotzerlab/release-3.4.0
Browse files Browse the repository at this point in the history
Release GSD 3.4.0
  • Loading branch information
joaander authored Oct 18, 2024
2 parents 31bd50f + bfeff99 commit b802923
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 14 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.3.2
current_version = 3.4.0
commit = False
tag = False

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 @@ -64,7 +64,7 @@ body:
label: GSD
description: |
What version of GSD are you using?
placeholder: 3.3.2
placeholder: 3.4.0
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 gsd 3.3.2'
title: 'Release gsd 3.4.0'
labels: ''
assignees: 'joaander'

Expand Down
2 changes: 2 additions & 0 deletions .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ Bradley Dice <bdice@umich.edu> Bradley Dice <bdice@bradleydice.com>
Vyas Ramasubramani <vramasub@umich.edu> Vyas <vramasub@umich.edu>
Jenny Fothergill <jennyfothergill@u.boisestate.edu> jennyfothergill <39961845+jennyfothergill@users.noreply.github.com>
Jens Glaser <jsglaser@umich.edu> jglaser <jsglaser@umich.edu>
Joseph Burkhart <joaburkh@umich.edu> josephburkhart <joaburkh@umich.edu>
Joseph Burkhart <joaburkh@umich.edu> Joseph Burkhart <61951318+josephburkhart@users.noreply.github.com>
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repos:
- id: check-case-conflict
- id: mixed-line-ending
- repo: https://github.com/asottile/pyupgrade
rev: 'v3.17.0'
rev: 'v3.18.0'
hooks:
- id: pyupgrade
args:
Expand All @@ -36,12 +36,12 @@ repos:
- --keep-before=#!
- --keep-after=.. include
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.6.9'
rev: 'v0.7.0'
hooks:
- id: ruff-format
- id: ruff
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v19.1.1
rev: v19.1.2
hooks:
- id: clang-format
types_or: [c, c++]
9 changes: 6 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,19 @@ Change Log
3.x
---

3.4.0 (not yet released)
^^^^^^^^^^^^^^^^^^^^^^^^
3.4.0 (2024-10-18)
^^^^^^^^^^^^^^^^^^

*Added:*

* New chunk type for string data - valid in file layer versions 2.1 and later
* ``GSD_TYPE_CHARACTER`` chunk type for string data - valid in file layer versions 2.1 and later
(`#391 <https://github.com/glotzerlab/gsd/pull/391>`__).

*Changed:*

* The ``log`` dictionary in a hoomd frame now accepts string values. ``read_log`` correspondingly
produces a NumPy array of variable length strings
(`#391 <https://github.com/glotzerlab/gsd/pull/391>`__).
* Require NumPy >= 2.0
(`#391 <https://github.com/glotzerlab/gsd/pull/391>`__).

Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#---------------------------------------------------------------------------
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "GSD"
PROJECT_NUMBER = v3.3.2
PROJECT_NUMBER = v3.4.0
PROJECT_BRIEF = "General simulation data"
PROJECT_LOGO =
OUTPUT_DIRECTORY = devdoc
Expand Down
2 changes: 1 addition & 1 deletion gsd/pygsd.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

import numpy

version = '3.3.2'
version = '3.4.0'

logger = logging.getLogger('gsd.pygsd')

Expand Down
2 changes: 1 addition & 1 deletion gsd/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
not the file layer version it reads/writes.
"""

version = '3.3.2'
version = '3.4.0'

__all__ = [
'version',
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
requires-python = ">=3.6"
name = "gsd"
version = "3.3.2"
version = "3.4.0"
description = "General simulation data file format."
readme = "README.md"
license = {text = "BSD-2-Clause"}
Expand All @@ -25,7 +25,7 @@ gsd = "gsd.__main__:main"
[project.urls]
Homepage = "https://gsd.readthedocs.io"
Documentation = "https://gsd.readthedocs.io"
Download = "https://github.com/glotzerlab/gsd/releases/download/v3.3.2/gsd-3.3.2.tar.gz"
Download = "https://github.com/glotzerlab/gsd/releases/download/v3.4.0/gsd-3.4.0.tar.gz"
Source = "https://github.com/glotzerlab/gsd"
Issues = "https://github.com/glotzerlab/gsd/issues"

Expand Down

0 comments on commit b802923

Please sign in to comment.