Skip to content

Commit

Permalink
Merge branch 'release-v2.5.2' into trunk-patch
Browse files Browse the repository at this point in the history
  • Loading branch information
joaander committed Apr 15, 2022
2 parents a936734 + ccf8331 commit 909e8b6
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 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.5.1
current_version = 2.5.2
commit = False
tag = False

Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@ Change Log
v2.x
----

v2.5.2 (2022-04-15)
^^^^^^^^^^^^^^^^^^^

*Fixed*

* Correctly handle non-ASCII characters on Windows.
* Document that the ``fname`` argument to ``gsd_`` C API functions is UTF-8
encoded.

v2.5.1 (2021-11-17)
^^^^^^^^^^^^^^^^^^^

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.5.1
PROJECT_NUMBER = v2.5.2
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.5.1"
__version__ = "2.5.2"

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.5.1"
__version__ = "2.5.2"

__all__ = [
'__version__',
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@


setup(name='gsd',
version='2.5.1',
version='2.5.2',
description=desc,
long_description=readme,
long_description_content_type='text/markdown',
Expand All @@ -37,7 +37,7 @@
author_email='[email protected]',
url='https://gsd.readthedocs.io',
download_url='http://glotzerlab.engin.umich.edu/Downloads/'
'gsd/gsd-v2.5.1.tar.gz',
'gsd/gsd-v2.5.2.tar.gz',

classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit 909e8b6

Please sign in to comment.