diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ac89604..5456970 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 10.2.0 +current_version = 10.2.1 commit = True tag = True diff --git a/setup.cfg b/setup.cfg index 5d04f1f..c62e849 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = ispyb -version = 10.2.0 +version = 10.2.1 description = Python package to access ISPyB database description-file = README.md long_description = This package provides a Python interface to ISPyB. It can access the ISPyB database directly or (in future versions) run on top of the official ISPyB webservices API. diff --git a/src/ispyb/__init__.py b/src/ispyb/__init__.py index 29edef2..ae04a82 100644 --- a/src/ispyb/__init__.py +++ b/src/ispyb/__init__.py @@ -3,7 +3,7 @@ import os import warnings -__version__ = "10.2.0" +__version__ = "10.2.1" _log = logging.getLogger("ispyb")