From 23ee6232580dfbe5b346c213fd37d78dca350f21 Mon Sep 17 00:00:00 2001 From: "Joshua A. Anderson" Date: Fri, 18 Oct 2024 11:17:03 -0400 Subject: [PATCH 1/5] Bump version to 3.4.0 --- .bumpversion.cfg | 2 +- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- .github/ISSUE_TEMPLATE/release.md | 2 +- Doxyfile | 2 +- gsd/pygsd.py | 2 +- gsd/version.py | 2 +- pyproject.toml | 4 ++-- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4f12047f..4d475586 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.3.2 +current_version = 3.4.0 commit = False tag = False diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index ef67a15c..dcbd8116 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -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 diff --git a/.github/ISSUE_TEMPLATE/release.md b/.github/ISSUE_TEMPLATE/release.md index fcde0845..42b008a7 100644 --- a/.github/ISSUE_TEMPLATE/release.md +++ b/.github/ISSUE_TEMPLATE/release.md @@ -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' diff --git a/Doxyfile b/Doxyfile index 564d9fea..527bf852 100644 --- a/Doxyfile +++ b/Doxyfile @@ -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 diff --git a/gsd/pygsd.py b/gsd/pygsd.py index 9e1adfec..eba4e317 100644 --- a/gsd/pygsd.py +++ b/gsd/pygsd.py @@ -36,7 +36,7 @@ import numpy -version = '3.3.2' +version = '3.4.0' logger = logging.getLogger('gsd.pygsd') diff --git a/gsd/version.py b/gsd/version.py index fa5f39ff..72219113 100644 --- a/gsd/version.py +++ b/gsd/version.py @@ -9,7 +9,7 @@ not the file layer version it reads/writes. """ -version = '3.3.2' +version = '3.4.0' __all__ = [ 'version', diff --git a/pyproject.toml b/pyproject.toml index 700919f0..36ec8b0f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"} @@ -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" From af7ae8f8c8b20671cb7b630560d343f7eaace7fe Mon Sep 17 00:00:00 2001 From: "Joshua A. Anderson" Date: Fri, 18 Oct 2024 11:21:17 -0400 Subject: [PATCH 2/5] Merge duplicate contributor accounts. --- .mailmap | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.mailmap b/.mailmap index 4178d152..e0359a7c 100644 --- a/.mailmap +++ b/.mailmap @@ -3,3 +3,5 @@ Bradley Dice Bradley Dice Vyas Ramasubramani Vyas Jenny Fothergill jennyfothergill <39961845+jennyfothergill@users.noreply.github.com> Jens Glaser jglaser +Joseph Burkhart josephburkhart +Joseph Burkhart Joseph Burkhart <61951318+josephburkhart@users.noreply.github.com> From 7b082ba5f9a99d781310eadc415c9058d23aa8c8 Mon Sep 17 00:00:00 2001 From: "Joshua A. Anderson" Date: Fri, 18 Oct 2024 11:22:43 -0400 Subject: [PATCH 3/5] Include release date in change log. --- CHANGELOG.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e0a0636e..f0fa501e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -10,8 +10,8 @@ Change Log 3.x --- -3.4.0 (not yet released) -^^^^^^^^^^^^^^^^^^^^^^^^ +3.4.0 (2024-10-18) +^^^^^^^^^^^^^^^^^^ *Added:* From 4f8c8584623374da53d2398cc0f4ea23a2e33f8c Mon Sep 17 00:00:00 2001 From: "Joshua A. Anderson" Date: Fri, 18 Oct 2024 11:30:48 -0400 Subject: [PATCH 4/5] Revise change log message. --- CHANGELOG.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f0fa501e..4d206e58 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -15,11 +15,14 @@ Change Log *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 `__). *Changed:* +* The ``log`` dictionary in a hoomd frame now accepts string values. ``read_log`` correspondingly + produces a NumPy array of variable length strings + (`#391 `__). * Require NumPy >= 2.0 (`#391 `__). From bfeff9943bb5fdaa14c8802ddb96c2c41947e6b4 Mon Sep 17 00:00:00 2001 From: "Joshua A. Anderson" Date: Fri, 18 Oct 2024 11:51:43 -0400 Subject: [PATCH 5/5] Update pre-commit configuration. --- .pre-commit-config.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1d23cb69..83e58c53 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -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: @@ -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++]