From 0154ffdf307580f2a128596517d9e4e70642c3e8 Mon Sep 17 00:00:00 2001 From: "Joshua A. Anderson" Date: Fri, 26 Jun 2020 06:50:03 -0400 Subject: [PATCH] Bump version to 2.1.2 --- .bumpversion.cfg | 2 +- Doxyfile | 2 +- INSTALLING.rst | 2 +- gsd/__init__.py | 2 +- gsd/pygsd.py | 2 +- setup.py | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 074a1f30..a49f87eb 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.1.1 +current_version = 2.1.2 commit = False tag = False diff --git a/Doxyfile b/Doxyfile index be8906f7..23c5c247 100644 --- a/Doxyfile +++ b/Doxyfile @@ -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 diff --git a/INSTALLING.rst b/INSTALLING.rst index 104b9417..32267962 100644 --- a/INSTALLING.rst +++ b/INSTALLING.rst @@ -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: diff --git a/gsd/__init__.py b/gsd/__init__.py index 2cdaae84..04760f68 100644 --- a/gsd/__init__.py +++ b/gsd/__init__.py @@ -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" diff --git a/gsd/pygsd.py b/gsd/pygsd.py index 0210ad0f..a0fe9960 100644 --- a/gsd/pygsd.py +++ b/gsd/pygsd.py @@ -39,7 +39,7 @@ from collections import namedtuple import sys -__version__ = "2.1.1" +__version__ = "2.1.2" logger = logging.getLogger('gsd.pygsd') diff --git a/setup.py b/setup.py index 2f41879b..38466bda 100644 --- a/setup.py +++ b/setup.py @@ -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', @@ -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",