Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release GSD 3.4.0 #398

Merged
merged 5 commits into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <[email protected]> Bradley Dice <[email protected]>
Vyas Ramasubramani <[email protected]> Vyas <[email protected]>
Jenny Fothergill <[email protected]> jennyfothergill <[email protected]>
Jens Glaser <[email protected]> jglaser <[email protected]>
Joseph Burkhart <[email protected]> josephburkhart <[email protected]>
Joseph Burkhart <[email protected]> Joseph Burkhart <[email protected]>
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
Loading