From 58c8e04c21c48165e42c56e42f01ac772a8137fd Mon Sep 17 00:00:00 2001 From: "Joshua A. Anderson" Date: Fri, 19 May 2023 11:53:41 -0400 Subject: [PATCH 1/2] Update change log. --- CHANGELOG.rst | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cd1f8b58..e08aef1a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -10,13 +10,27 @@ Change Log v2.x ---- -v2.9.0 (not yet released) -^^^^^^^^^^^^^^^^^^^^^^^^^ +v2.9.0 (2023-05-19) +^^^^^^^^^^^^^^^^^^^ + +*Added:* + +* File modes ``'r'``, ``'r+'``, ``'w'``, ``'x'``, and ``'a'`` + (`#238 `__). *Changed:* -* Test on gcc9, clang10, and newer. -* Test and provide binary wheels on Python 3.8 and newer. +* Test on gcc9, clang10, and newer + (`#235 `__). +* Test and provide binary wheels on Python 3.8 and newer + (`#235 `__). + +*Deprecated:* + +* File modes ``'wb'``, ``'wb+'``, ``'rb'``, ``'rb+'``, ``'ab'``, ``'xb'``, and ``'xb+'`` + (`#238 `__). +* [C API] ``GSD_APPEND`` file open mode + (`#238 `__). v2.8.1 (2023-03-13) ^^^^^^^^^^^^^^^^^^^ From 6a401920e649a68a4245ccabaa7e7d72165e36b2 Mon Sep 17 00:00:00 2001 From: "Joshua A. Anderson" Date: Fri, 19 May 2023 11:55:27 -0400 Subject: [PATCH 2/2] Run bump2version. --- .bumpversion.cfg | 2 +- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- Doxyfile | 2 +- gsd/pygsd.py | 2 +- gsd/version.py | 2 +- pyproject.toml | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7e14bf23..fb1e0242 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.8.1 +current_version = 2.9.0 commit = False tag = False diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index ad8f303f..89a0bd60 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -65,7 +65,7 @@ body: label: GSD description: | What version of GSD are you using? - placeholder: 2.8.1 + placeholder: 2.9.0 validations: required: true - type: markdown diff --git a/Doxyfile b/Doxyfile index cb721a20..4d1950c1 100644 --- a/Doxyfile +++ b/Doxyfile @@ -5,7 +5,7 @@ #--------------------------------------------------------------------------- DOXYFILE_ENCODING = UTF-8 PROJECT_NAME = "GSD" -PROJECT_NUMBER = v2.8.1 +PROJECT_NUMBER = v2.9.0 PROJECT_BRIEF = "General simulation data" PROJECT_LOGO = OUTPUT_DIRECTORY = devdoc diff --git a/gsd/pygsd.py b/gsd/pygsd.py index be5147c4..15fe2692 100644 --- a/gsd/pygsd.py +++ b/gsd/pygsd.py @@ -37,7 +37,7 @@ from collections import namedtuple import sys -__version__ = "2.8.1" +__version__ = "2.9.0" logger = logging.getLogger('gsd.pygsd') diff --git a/gsd/version.py b/gsd/version.py index c6e3fbe3..bebad13d 100644 --- a/gsd/version.py +++ b/gsd/version.py @@ -7,7 +7,7 @@ in other modules within the package. """ -__version__ = "2.8.1" +__version__ = "2.9.0" __all__ = [ '__version__', diff --git a/pyproject.toml b/pyproject.toml index d287f740..ffa97099 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] requires-python = ">=3.6" name = "gsd" -version = "2.8.1" +version = "2.9.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/v2.8.1/gsd-v2.8.1.tar.gz" +Download = "https://github.com/glotzerlab/gsd/releases/download/v2.9.0/gsd-v2.9.0.tar.gz" Source = "https://github.com/glotzerlab/gsd" Issues = "https://github.com/glotzerlab/gsd/issues"