Skip to content

Commit

Permalink
Merge pull request #247 from glotzerlab/release-2.9.0
Browse files Browse the repository at this point in the history
Release gsd 2.9.0.
  • Loading branch information
joaander authored May 19, 2023
2 parents 4914bb2 + 6a40192 commit 15b0eef
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 11 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 = 2.8.1
current_version = 2.9.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 @@ -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
Expand Down
22 changes: 18 additions & 4 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/glotzerlab/gsd/pull/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 <https://github.com/glotzerlab/gsd/pull/235>`__).
* Test and provide binary wheels on Python 3.8 and newer
(`#235 <https://github.com/glotzerlab/gsd/pull/235>`__).

*Deprecated:*

* File modes ``'wb'``, ``'wb+'``, ``'rb'``, ``'rb+'``, ``'ab'``, ``'xb'``, and ``'xb+'``
(`#238 <https://github.com/glotzerlab/gsd/pull/238>`__).
* [C API] ``GSD_APPEND`` file open mode
(`#238 <https://github.com/glotzerlab/gsd/pull/238>`__).

v2.8.1 (2023-03-13)
^^^^^^^^^^^^^^^^^^^
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 = v2.8.1
PROJECT_NUMBER = v2.9.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 @@ -37,7 +37,7 @@
from collections import namedtuple
import sys

__version__ = "2.8.1"
__version__ = "2.9.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 @@ -7,7 +7,7 @@
in other modules within the package.
"""

__version__ = "2.8.1"
__version__ = "2.9.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 = "2.8.1"
version = "2.9.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/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"

Expand Down

0 comments on commit 15b0eef

Please sign in to comment.