Skip to content

Commit

Permalink
Merge pull request #278 from glotzerlab/release-3.1.1
Browse files Browse the repository at this point in the history
Release GSD 3.1.1.
  • Loading branch information
joaander authored Aug 3, 2023
2 parents 367469c + 66058d5 commit de226fe
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 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.1.0
current_version = 3.1.1
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: 3.1.0
placeholder: 3.1.1
validations:
required: true
- type: markdown
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ Change Log
3.x
---

3.1.1 (2023-??-??)
3.1.1 (2023-08-03)
^^^^^^^^^^^^^^^^^^

*Fixed:*

* Raise a ``FileExistsError`` when opening a file that already exists with ``mode = 'x'``
* Raise a ``FileExistsError`` when opening a file that already exists with ``mode = 'x'``.

3.1.0 (2023-07-28)
^^^^^^^^^^^^^^^^^^
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.1.0
PROJECT_NUMBER = v3.1.1
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 = "3.1.0"
version = "3.1.1"

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.1.0"
version = "3.1.1"

__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.1.0"
version = "3.1.1"
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.1.0/gsd-3.1.0.tar.gz"
Download = "https://github.com/glotzerlab/gsd/releases/download/v3.1.1/gsd-3.1.1.tar.gz"
Source = "https://github.com/glotzerlab/gsd"
Issues = "https://github.com/glotzerlab/gsd/issues"

Expand Down

0 comments on commit de226fe

Please sign in to comment.