Skip to content

Commit

Permalink
Bump version to 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
joaander committed Jun 26, 2020
1 parent 00e782e commit 0154ffd
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 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.1.1
current_version = 2.1.2
commit = False
tag = False

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.1.1
PROJECT_NUMBER = v2.1.2
PROJECT_BRIEF = "General simulation data"
PROJECT_LOGO =
OUTPUT_DIRECTORY = devdoc
Expand Down
2 changes: 1 addition & 1 deletion INSTALLING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Download source releases directly from the web: https://glotzerlab.engin.umich.e

.. code-block:: bash
$ curl -O https://glotzerlab.engin.umich.edu/downloads/gsd/gsd-v2.1.1.tar.gz
$ curl -O https://glotzerlab.engin.umich.edu/downloads/gsd/gsd-v2.1.2.tar.gz
Or, clone using git:

Expand Down
2 changes: 1 addition & 1 deletion gsd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
if sys.version_info < (3, 5) or sys.version_info >= (4, 0):
raise RuntimeError("Python ~= 3.5 is required")

__version__ = "2.1.1"
__version__ = "2.1.2"
2 changes: 1 addition & 1 deletion gsd/pygsd.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
from collections import namedtuple
import sys

__version__ = "2.1.1"
__version__ = "2.1.2"

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

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@


setup(name='gsd',
version='2.1.1',
version='2.1.2',
description=desc,
long_description=readme,
long_description_content_type='text/markdown',
Expand All @@ -33,7 +33,7 @@
author_email='joaander@umich.edu',
url='https://gsd.readthedocs.io',
download_url='http://glotzerlab.engin.umich.edu/Downloads/'
'gsd/gsd-v2.1.1.tar.gz',
'gsd/gsd-v2.1.2.tar.gz',

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

0 comments on commit 0154ffd

Please sign in to comment.