Skip to content

Commit 537bd0f

Browse files
committed
Bump version to v2.3.0
1 parent f2d5d8f commit 537bd0f

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.2.0
2+
current_version = 2.3.0
33
commit = False
44
tag = False
55

Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#---------------------------------------------------------------------------
66
DOXYFILE_ENCODING = UTF-8
77
PROJECT_NAME = "GSD"
8-
PROJECT_NUMBER = v2.2.0
8+
PROJECT_NUMBER = v2.3.0
99
PROJECT_BRIEF = "General simulation data"
1010
PROJECT_LOGO =
1111
OUTPUT_DIRECTORY = devdoc

INSTALLING.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Download source releases directly from the web: https://glotzerlab.engin.umich.e
4646

4747
.. code-block:: bash
4848
49-
$ curl -O https://glotzerlab.engin.umich.edu/downloads/gsd/gsd-v2.2.0.tar.gz
49+
$ curl -O https://glotzerlab.engin.umich.edu/downloads/gsd/gsd-v2.3.0.tar.gz
5050
5151
Or, clone using git:
5252

gsd/pygsd.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
from collections import namedtuple
4040
import sys
4141

42-
__version__ = "2.2.0"
42+
__version__ = "2.3.0"
4343

4444
logger = logging.getLogger('gsd.pygsd')
4545

gsd/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
in other modules within the package.
99
"""
1010

11-
__version__ = "2.2.0"
11+
__version__ = "2.3.0"
1212

1313
__all__ = [
1414
'__version__',

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626

2727
setup(name='gsd',
28-
version='2.2.0',
28+
version='2.3.0',
2929
description=desc,
3030
long_description=readme,
3131
long_description_content_type='text/markdown',
@@ -34,7 +34,7 @@
3434
author_email='[email protected]',
3535
url='https://gsd.readthedocs.io',
3636
download_url='http://glotzerlab.engin.umich.edu/Downloads/'
37-
'gsd/gsd-v2.2.0.tar.gz',
37+
'gsd/gsd-v2.3.0.tar.gz',
3838

3939
classifiers=[
4040
"Development Status :: 5 - Production/Stable",

0 commit comments

Comments
 (0)